Why does IE open form submission in a new window and not dynamically inserted iframe. - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:04:21Zhttp://stackoverflow.com/feeds/question/875650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/875650/why-does-ie-open-form-submission-in-a-new-window-and-not-dynamically-inserted-ifr1Why does IE open form submission in a new window and not dynamically inserted iframe.lambacck2009-05-17T22:28:47Z2009-06-17T19:32:21Z
<p>I am trying to get post a form to a hidden, dynamically inserted iframe, but in Internet Explorer the form submission opens in a new window.</p>
<pre><code>var iframe = document.createElement('iframe');
iframe.name = 'hidden_iframe';
iframe.className = 'NotVisible';
iframe.id = 'hidden_iframe';
document.body.appendChild(iframe);
var my_form = document.getElementById('my_form');
my_form.target = 'hidden_iframe';
</code></pre>
<p>This works in Firefox but not IE.</p>
http://stackoverflow.com/questions/875650/why-does-ie-open-form-submission-in-a-new-window-and-not-dynamically-inserted-ifr/875657#8756572Answer by lambacck for Why does IE open form submission in a new window and not dynamically inserted iframe.lambacck2009-05-17T22:32:16Z2009-05-17T22:32:16Z<p>Apparently you need to include the name in the call to createElement. This works in IE and causes an exception in standards compliant browsers. We get:</p>
<pre><code>var iframe;
try {
iframe = document.createElement('<iframe name="hidden_iframe">');
} catch (ex) {
iframe = document.createElement('iframe');
iframe.name='hidden_iframe';
}
iframe.className = 'NotVisible';
iframe.id = 'hidden_iframe';
document.body.appendChild(iframe);
var my_form = document.getElementById('my_form');
my_form.target = 'hidden_iframe';
</code></pre>
http://stackoverflow.com/questions/875650/why-does-ie-open-form-submission-in-a-new-window-and-not-dynamically-inserted-ifr/875659#8756590Answer by Soviut for Why does IE open form submission in a new window and not dynamically inserted iframe.Soviut2009-05-17T22:32:35Z2009-05-17T22:32:35Z<p>Could this not be more easily accomplished using an a AJAX submit? The iframe approach you're presenting is very hackish and prone to lots of issues.</p>
<p>Here is a <a href="http://malsup.com/jquery/form/" rel="nofollow">JQuery Form plugin</a> that makes doing AJAX submits easy by handling all the serialization of the form values for you.</p>