Welcome Guest, Not a member yet? Register   Sign In
Cancel php running upload files
#1

[eluser]helphelp[/eluser]
Hi, is there a way to cancel php running upload files?

i have built a simple ajax apc multi-files uploader. Everything are working except i need to create a button called "Cancel all upload". Please give me some advise to do it

thanks
#2

[eluser]tomcode[/eluser]
Well, the base syntax is :

Code:
// Your Request
var req = new ActiveXObject('Microsoft.XMLHTTP'); // MS
var req = new XMLHttpRequest(); // Gecko & Co.

// Canceling
req.abort();

Now it really depends with which implementation You work (aka framework)

jQuery :
Code:
// Request
var req = $.ajax(options);

// Canceling
req.abort();

Mootools:
Code:
// Request
var req = new Request(options);

// Canceling
req.cancel();




Theme © iAndrew 2016 - Forum software by © MyBB