Vidya
Vidya

Reputation: 8207

How and pause and resume uploads in php and jquery?

Can someone give some pointers regarding implementing pause and resume uploads using php and jquery ?

Regards,

Upvotes: 1

Views: 4774

Answers (2)

Vidya
Vidya

Reputation: 8207

we can use html5 to do this

http://hacks.mozilla.org/2011/04/resumeupload/

Upvotes: 1

Bojangles
Bojangles

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

Related Questions