how to set progress bar in file uploading using jquery? [closed]

You could use a client side uploading component that supports this. Uploadify, plupload and AJAX upload are some examples of such controls.

And if you don’t want to use a third party control you could implement this functionality yourself. The HTML5 File API allows you to do that. There’s an example in this article I have linked to. Obviously client browsers need to support the HTML5 File API for this to work.

Leave a Comment