when the user clears the list of files to upload (clicks on button )
myForm.attachEvent("onClear", function (){
//your code here
});
Note, before the onClear event is invoked the (onFileRemove) event fires for all files in the list to upload.
Back to top