I have just normal form with some input fields and one file input field. I use the Blueimp\'s Jquery File Upload plugin to upload a file. It seems to work, if you select a f
I had the same problem, my solution was to unbind the click event of my button and bind it back whenever the add event is called. Try This.
...
add: function (e, data) { $('#upload_button').unbind('click'); data.context = $('#upload_button').bind('click', function () { ... data.submit(); } }