Reputation: 8207
Can someone give some pointers regarding implementing pause and resume uploads using php and jquery ?
Regards,
Upvotes: 1
Views: 4774
Reputation: 8207
we can use html5 to do this
http://hacks.mozilla.org/2011/04/resumeupload/
Upvotes: 1
Reputation: 101483
There isn't a way to pause uploads with jQuery/PHP. Uploading a file relies on a POST request, which is either sent or isn't.
However, this plugin allows you to cancel them, along with some other very nice things (all without Flash).
If you want more options, go for Uploadify, which uses Flash.
Upvotes: 1