Test is at the link above.
$('a').click(function(){
$('input[type="file"]').click();
});
$('input[type="file"]').on('change', function(){
$('form').submit();
});
When using the form's browse button the file is submitted on change. when using the link for "A" IE throws an error of SCRIPT5: Access is denied.
I want for the anchor link to invoke the file dialog and when a file is selected it auto submits the file to the iframe for a non-reloading file upload
EDIT: Looks only to be a problem in IE9
Thanks in advance