requeueErrors
Boolean
false
If set to true, files that return errors during an upload are requeued and the upload is repeatedly tried.
Demo
|
1 |
<input type="file" name="file_upload" id="file_upload" /> |
|
1 2 3 4 5 6 7 8 9 10 |
$(function() {
$("#file_upload").uploadify({
'requeueErrors' : true,
'swf' : '/uploadify/uploadify.swf',
'uploader' : '/uploadify/not_here.php',
'onUploadStart' : function(file) {
console.log('Attempting to upload: ' + file.name);
}
});
}); |

