Reputation: 97
I'd like an AJAX file uploader like the one shown in Gmail when you're uploading a file (with the progress bar) written in PHP.
Anyone have any ideas?
Thanks.
Upvotes: 3
Views: 11505
Reputation: 131
I tried AJAX Upload by Andrew Valums to upload multiple files. This works really great and easy to use.
Upvotes: 1
Reputation: 13545
you can use this plugins :
http://aquantum-demo.appspot.com/file-upload
or
http://valums.com/files/2010/file-uploader/demo.htm
or
http://www.uploadify.com/demos/
Upvotes: 5
Reputation: 24052
You could dynamically update a JQuery Progress Bar plugin, and achieve the same look and feel.
<div id="progressbar"></div>
<script>
$(document).ready(function() {
$("#progressbar").progressbar({ value: 1 });
});
</script>
Then all you need to do is reference that progress bar and set it's value based on your actual progress:
$( ".selector" ).progressbar( "option", "value", <YOURVALUE>);
Upvotes: 0