Introduction to Ajax

Introduction to Ajax, Ajax how-to

Ajax: Form fields into URL query string

Javascript code to parse form fields into URL query string. To be used with Ajax sites.

myWebChat: IM with your site’s visitors

Info regarding new Web Chatting application which allows site owners to interact with their visitors in real time.

Javascript: Letter incrementation à la PHP/Perl – Part 2

Mimmicking PHP and Perl’s auto-increment on letters.

Javascript: Letter incrementation à la PHP/Perl – Part 1

Have you ever needed to do an auto-increment on a letter in Javascript? It’s built into PHP and Perl ($a = ‘A’; $a++; # $a is now ‘B’), but I recently found that trying to do it in Javascript may be harder than one thinks. After lots of time lost searching the web for a [...]