i have an iframe in my page from another sub domain. In this iframe i have a form
<div id="main"></div>
<form id="fileForm" method="POST" action="https://othersub.samedomain.de/upload" enctype="multipart/form-data">
<input name="filename" type="file" id="filename"><br>
<input name="action" type="hidden" value="fileupload">
<a href="#" id="file-upload">upload</a>
</form>
In my JS i have this:
$(document).ready(function() {
$("#file-upload").click(function(event){
event.preventDefault();
console.log("CLICK EVENT");
$("#fileForm").submit();
});
$("#fileForm").ajaxForm({
'target': '#main',
'dataType': 'json',
'type': 'POST',
'url': 'https://othersub.samedomain.de/upload',
beforeSubmit: function(){
/* show loading */
},
success: function(response, statusText, xhr, $form) {
/* do */
},
error: function(response, statusText, xhr, $form) {
/* do */
}
});
});
So i click on my upload button and i become a bad Error in IE: (Access Denied) SCRIPT5
That is this line (554) of code:
submitFn.apply(form);
or more:
try {
form.submit();
} catch(err) {
// just in case form has element with name/id of 'submit'
var submitFn = document.createElement('form').submit;
submitFn.apply(form);
}
This happends in old IE when he has to use the iframe upload. I hope u can help.
Best Regards
Has one big problem with input file, On IE is necessary the click over this element, if you use one javascript to simulate this click, you got one error after submit. Try this, put the input file with alpha 0 and filter 0 over a fake button to chose the file
sample