I have these dynamically created file input HTML elements which are used with a jQuery-ajax file upload plug-in.
I would like the file upload to start after the input value has been updated. However, Internet Explorer seems to ignore the Javascript onChange.
How can I achieve this in IE?
Example:
var html = $( <div class="add_input"> +
<input type="file" name="file"/></div> ).change(submit);
$( #add_inputs ).prepend(html);