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 $up
Not sure if this solves your problem or not, but for me, the following does not work (should work per the documentation:
$uploadButton.bind 'fileuploadchange', (e, data) => # Do something
However, the following works:
$uploadButton.bind 'change', (e, data) => # Do something