I have these dynamically added file inputs, that I then use a jQuery 'Ajax' file upload plug-in with. I'd like the upload to start once the input value has been 'changed'. However, Internet Explorer doesn't seem to respect the onchange event like other browsers. How can I do this?
Here is, more or else, the code that is affected:
var html = $('<div class="add_input"><input type="file" name="file"/></div>').change(submit);
$('#add_inputs').prepend(html);