I know this is an old question, but for those who struggled with the same problem:
You need to dig into the Doc here:
https://github.com/blueimp/jQuery-File-Upload/wiki/Options
And there is a list of useful events:
$('#fileupload') .bind('fileuploadadd', function (e, data) {}) .bind('fileuploadsubmit', function (e, data) {}) .bind('fileuploadsend', function (e, data) {}) .bind('fileuploaddone', function (e, data) {}) .bind('fileuploadfail', function (e, data) {}) .bind('fileuploadalways', function (e, data) {}) .bind('fileuploadprogress', function (e, data) {}) .bind('fileuploadprogressall', function (e, data) {}) .bind('fileuploadstart', function (e) {}) .bind('fileuploadstop', function (e) {}) .bind('fileuploadchange', function (e, data) {}) .bind('fileuploadpaste', function (e, data) {}) .bind('fileuploaddrop', function (e, data) {}) .bind('fileuploaddragover', function (e) {}) .bind('fileuploadchunksend', function (e, data) {}) .bind('fileuploadchunkdone', function (e, data) {}) .bind('fileuploadchunkfail', function (e, data) {}) .bind('fileuploadchunkalways', function (e, data) {});
Alihalabyah
source share