upload
'upload'
Upload the files in the queue or just a specific file. Each queue item has the file object stored in the ‘file’ property of the item’s jQuery data object.
Arguments
- file
If a file is passed as the first argument, only that specific file will be uploaded.
Demo
|
1 2 |
<input type="file" name="file_upload" id="file_upload" /><br />
<a href="javascript:$('#file_upload').uploadifive('upload')">Upload Files</a> |
|
1 2 3 4 5 6 |
$(function() {
$('#file_upload').uploadifive({
'auto' : false,
'uploadScript' : '/uploadifive.php'
});
}); |

