CodeIgniter Forums
Cancel php running upload files - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Cancel php running upload files (/showthread.php?tid=28497)



Cancel php running upload files - El Forum - 03-12-2010

[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


Cancel php running upload files - El Forum - 03-12-2010

[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();