Why does IE open form submission in a new window and not dynamically inserted iframe. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:04:21Z http://stackoverflow.com/feeds/question/875650 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/875650/why-does-ie-open-form-submission-in-a-new-window-and-not-dynamically-inserted-ifr 1 Why does IE open form submission in a new window and not dynamically inserted iframe. lambacck 2009-05-17T22:28:47Z 2009-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#875657 2 Answer by lambacck for Why does IE open form submission in a new window and not dynamically inserted iframe. lambacck 2009-05-17T22:32:16Z 2009-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('&lt;iframe name="hidden_iframe"&gt;'); } 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#875659 0 Answer by Soviut for Why does IE open form submission in a new window and not dynamically inserted iframe. Soviut 2009-05-17T22:32:35Z 2009-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>