Archive | JavaScript RSS feed for this section

Tip of the Day: Secure Your Gmail

From the “Why Didn’t I Think of That” department: GMailSecure has got to be one of the most elegantly simple, yet useful Greasemonkey scripts ever. When I say simple, I mean one line of code: location.href = location.href.replace(/^http:/, ‘https:’); This script ensures your Gmail session using Firefox takes place over a secure HTTP connection providing [...]

Read full story Comments { 0 }

Linkto: Scriptaculous Cheat Sheet

Amy Hoy offers up Scriptaculous Cheat Sheet #1, a “Field Guide to Script.aculo.us Combination Effects”. Basic effects syntax all on a single-page PDF. Nicely done.

Read full story Comments { 0 }

Linkto: Create Your Own Ajax Effects

Thomas Fuchs, creator of the Script.aculo.us JavaScript effects library shows you how to create your own Ajax effects. Roll your own fabulous Web 2.0 effects using the amazing Script.aculo.us effects engine.

Read full story Comments { 0 }

Cross-site Scripting Techniques and Prevention

ALA serves up a great article addressing the dangers of cross-site scripting (XSS) vulnerabilities. Author Niklas Bivald says, Validating and sanitizing user input is no longer optional. Consider what your users really need to do, think about what characters they need to accomplish those tasks, and strip/convert as necessary to protect your community. Part 1 [...]

Read full story Comments { 0 }

More Ajax Resources for Beginners

When I first became involved in a project that would require Ajax techniques, I quickly went to the web in search of tutorials to learn how to use the XMLHttpRequest object. Following are the resources I found most helpful as I learned to create dynamic web applications. Links to various JavaScript libraries and other sites [...]

Read full story Comments { 2 }

Links to 30 AJAX Tutorials

Check out this Round-up of 30 AJAX Tutorials. Great links if you need to get up to speed on AJAX techniques. A couple of other favorites: The XMLHttpRequest Object, Guide to Using AJAX and XMLHttpRequest, and Getting Started with Ajax.

Read full story Comments { 0 }