Why doesn't Blueimp's jQuery-File-Upload plugin fire callbacks?
I'm experimenting with Blueimp's jQuery-File-Upload plugin, which judging by the demo looks very promising. It's really easy to implement: var $uploadButton = $("#fileop-upload");// <input type="file" id="fileop-upload" [etc] /> $uploadButton.fileupload({ url : "//domain/path/to/receive-uploaded-files" }); The selected files are uploaded fine without refreshing the page as expected, but of course with a minimal configuration like this the user won't get any notification. Here's where the plugin's callbacks would come in handy. According to the documentation there are two ways to define