onAddQueueItem
function
N/A
Triggered when a new item is added to the queue. This is triggered whether or not the file item returns an error.
Arguments
- file
The file object being added to the queue.
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',
'onAddQueueItem' : function(file) {
alert('The file ' + file.name + ' was added to the queue!');
}
});
}); |

