onUploadStart
function
Triggered immediate before a file is uploaded.
Arguments
- file
The file object that is about to be uploaded
Demo
|
1 |
<input type="file" name="file_upload" id="file_upload" /> |
|
1 2 3 4 5 6 7 8 9 |
$(function() {
$("#file_upload").uploadify({
'swf' : '/uploadify/uploadify.swf',
'uploader' : '/uploadify/uploadify.php',
'onUploadStart' : function(file) {
alert('Starting to upload ' + file.name);
}
});
}); |

