BulkUpload for jQuery

BulkUpload is a simple straight forward plugin which you can use in your HTML forms to let your website′s users to select multiple files and manage them with a list to upload them straight to your webserver. If your website is about file management or related to any uploading this will be a good use for you.

Demo

How to use

This is the little snippet of code which is used to make the bulk uploader on this webpage. This might be useful for you.

The below is my HTML

<div>
   <div id="FileUploaderHolderHook">
      <input type="file" class="bulkupload" name="File[]" />
   </div>
</div>

This is my JavaScript

<script type="text/javascript">
   jQuery('document').ready(
      function(){
         jQuery(".bulkupload").bulkupload();
      }
   );
</script>

If you have linked the jQuery library and the jquery.bulkupload.js to your HTML properly and you have added the two snippets of code properly then you will end up with a bulkuploader.

Download here