onUpload
function
Triggered once during an upload operation that was called with the upload method.
Arguments
- filesToUpload
The number of files that need to be uploaded.
Demo
|
1 |
<input type="file" name="file_upload" id="file_upload" /> |
|
1 2 3 4 5 6 7 8 |
$(function() {
$('#file_upload').uploadifive({
'uploadScript' : '/uploadifive.php'
'onUpload' : function(filesToUpload) {
alert(filesToUpload + ' files will be uploaded.');
}
});
}); |

