spacer
Download (5592)

jQuery HTML5 Uploader

jQuery HTML5 Uploader is a lightweight jQuery plugin that lets you to quickly add an upload system a-la-Gmail into your web app.
You only need to create a dropbox element (i.e. a div) and jQuery HTML5 Uploader will do the rest. Then you can drag & drop one or more files on the element and the files will be uploaded.
It also works with the multiple input file element.
The upload function is divided into two asynchronous operations: client side, the file is loaded in the browser memory with a FileReader object. Useful if you want, for example, to show the image preview while uploading a picture. The server side operation consists in sending the binary file string to the postUrl (see settings).
It has been tested and works on Firefox and Chrome.
Please, send us a feedback.

Usage

    
<script type="text/javascript" src="/img/spacer.gif"> 

Demo

Please drag & drop your pictures on the image below.

Settings

  • name: upload field identifier.
  • postUrl: the url to post the file data.
  • onClientAbort: Called when the read operation is aborted.
  • onClientError: Called when an error occurs.
  • onClientLoad: Called when the read operation is successfully completed.
  • onClientLoadEnd: Called when the read is completed, whether successful or not. This is called after either onload or onerror.
  • onClientLoadStart: Called when reading the data is about to begin.
  • onClientProgress: Called periodically while the data is being read.
  • onServerAbort: Called when the post operation is aborted.
  • onServerError: Called when an error occurs.
  • onServerLoad: Called when the post operation is successfully completed.
  • onServerLoadStart: Called when posting the data is about to begin.
  • onServerProgress: Called periodically while the data is being posted.
  • onServerReadyStateChange: A JavaScript function object that is called whenever the readyState attribute changes. The callback is called from the user interface thread.
  • onSuccess: Called when the post operation is successfully completed, the ReadyState is 4 and the HttpStatus is 200. Useful to get back informations from the server.
Download (5592)
You may also like
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.