Published: Monday, March 12th, 2007
Now we all should know how to upload file using ordinary forms right? This was great back in the day, but we’ve been pushing Web 2.0 for some time now and it only seems fitting that we find another way. Now there was SWFUpload, which is a beautiful Flash utility that gives us this functionality, but it does use Flash, which a lot of web developers tend to steer away from. Flash is usually left up to the designers among us. It does degrade nicely to the regular form if no Flash is detected.
We now have an HTML version for those of us who just hate Flash and all what it stands for :). Ideally we would like to have an AJAX version of this like we have in Gmail, but no dice. Not yet anyways. Here’s our best substitute: micoxUpload.
Popularity: 6%
Share This
Published: Wednesday, February 28th, 2007
Before we even begin, one good question that anyone would ask is since this came out over one and a half years ago, why am I only now getting wind of this? Good question. Wish I had a good answer. But on to business: AJAX Contact form 0.9.
Demo available here.
Popularity: 5%
Share This
Published: Tuesday, December 19th, 2006
Introduction
Back when I was doing my internship we had a major problem we were trying to solve. The project involved creating a web based terminal emulator using AJAX. Well, it was a little bit more specific than that. It was basically duplicating a specific application in the browser window.
Problem
Sounds all well and good except that this application made heavy use of F Keys, e.g. (F10, F5, F1, etc). Needless to say this would not really be viable in a browser since F1 would call up help, F5 would refresh and F10 would send the cursor to the menu. We had already written a nice enough key handler that worked rather well, with the exception of these F Keys.
JavaScript Solution
After a lot of hacking around I found a way to stop the browser from calling up and propagating those events. My code was, for lack of a better word, nasty; but it did work. It involved a lot of IE/Mozilla workarounds. I recently came across some cleaner code, so here you go:
Popularity: 6%
Share This
Published: Tuesday, December 12th, 2006
Yes, I know I’m a bit late with this, but I still had to give you the run down.
Originally created by Lokesh Dhakar
Lightbox JS is a simple, unobtrusive script used to overlay images on the current page. It’s a snap to setup and works on all modern browsers.
Have you ever gone to a website and seen this nice lil’ thing they do when you click on a thumbnail and it pops up a larger image in the same browser window? That’s LightBox. I’ve seen it before and I haven’t given it a lot of thought. I just naturally assumed that it would take too much time to implement, so I left it alone. Oh was I wrong.
Popularity: 12%
Share This
Published: Monday, November 27th, 2006
It’s funny how these new AJAX applications always have these funny names.
Zamzar, wow. But I must say, I haven’t seen anything like it. Well we’ve all seen file conversion. We might have even seen it free. And a few of us have come into contact with a couple free online converters, but not like this. Not all in one pack like this. You have documents, images, music and video. Have fun kiddies.
Popularity: 3%
Share This
Published: Sunday, November 19th, 2006
I’m not sure what exactly the entire package does, but this is something they demoed on the website. A beautiful AJAX site timer. It shows start time, connect time, time of first byte and time of last byte for every element on the page that it loads. Check it out.

OctaGate SiteTimer
Popularity: 3%
Share This
Published: Wednesday, November 1st, 2006
Brand new. InstaCalc. Just like the name says, it’s an instant making use of AJAX. No need to hit “enter”. Your results are written as you type, just like any other AJAX application. You can set a number of rows and even set variables and use them similar to Excel. One neat feature is that it understands words like “thousand”, “million”, etc.
You can even define a calculator and then embed it into an HTML page. Give it a try.

Source: TechCrunch
Popularity: 2%
Share This
Published: Friday, October 27th, 2006
How long have you been waiting for this? A step by step tutorial on integrating Google Maps into your web application using Ajax. He starts out with an introduction to the Google Maps API. After this, he delves into more advanced techniques for adding dynamic markers, etc using ajax. Interesting article. By far, the simplest I’ve seen without making use of some already existing library.
John Ferguson Smarta Writes:
…we will discuss how you can easily implement dynamic interactive maps on your Java web application, using the Google Maps API for the web interface, and Ajax to provide real-time interaction with the server. This article is designed to give you a rapid introduction to both Google Maps and Ajax, and to let you get your own interactive maps up and running quickly and easily.
Popularity: 3%
Share This