File upload using Ajax – Jquery Plugin
I have already written about the Ajax file upload on this blog and found this another plug-in of Jquery for Ajax file upload. Looks like an evolved plug-in with nice demonstrations and documentation at their home page. This is called Uploadify, you can check this out at www.uploadify.com
Let me just try to describe this plug-in and see how easily can any one use it
This plug-in allows user to upload files using Ajax. Plug-in has many features which were generally asked by people for earlier Ajax upload plug-ins like
a. Integrated progress bar
b. passing extra/more parameters with Ajax file upload request
c. Multiple Ajax file uploads and queuing them.
d. Limiting upload size of file
e. Canceling Ajax upload in between.
Plug-in also allows you to customize the behavior by providing number of callback functions which can be used for adding custom functionality. See the complete documentation for more details.
Following are the pre-requisites of this plug-in
1. jQuery v1.2.x or greater
2. SWFObject v2.2 or greater
3. Flash Player v9.0.24 or greater
Now lets try to do some samples of it. You can also check out the demo page of the www.uploadify.com for samples.
Most Commented Posts
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.

Niced but how can it be changed to handle multiple file uploads, and break them down into chunks uploading say 1 mb at a time. How also fo you set it to upload the file as soon as one is specified, took me a while to figure out I had to press the upload files button.