onInit
function
Triggered at the end of the initialization phase.
Arguments
No arguments are passed to this event.
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'
'onInit' : function() {
alert('Add files to the queue to start uploading.');
}
});
}); |

