Submitting a form with target set to a script-generated iframe on IE
(nice title, isn’t it?)
Although AJAX techniques are now widespread among the web-developers community, there’s still something that can’t be done using pure AJAX techiques (whatever that means): file uploads. There’s no way to grab a file using JavaScript and send it to the server using an asynchronous request. I guess the main reason for this is security, you don’t want web sites to steal files from your home directory.
Anyway, people found a relatively popular way to do this. The ideia is having a hidden iframe on the page, and use that iframe as a target of the form where you have the reference to the file to upload. So, when the form submits, the result page will go to the hidden iframe, and the user won’t see a full page refresh. You still have to take care of some details, like hiding the form and showing a nice progress bar with the classic “Hold on, we are uploading” message, and polling for the content of the iframe to check is the file is still in its way, or if it arrived safely.
One nice detail is where do you actually have the hidden iframe. You could just put the iframe on the HTML code of your page, but IMO that’s ugly. The iframe is an artifact that is needed just to serve as a black hole for the form submittion result page. It doesn’t make sense to put it in your HTML code, as it hasn’t anything to do with the content. Also, it’s error prone: you may inadvertently delete it, causing the file upload to missbehave. Or you may need to change the iframe code and having it on HTML will force you to update on all the pages where you use it (and of course, you will forget one).
So, I believe the most elegant solution (if you can use the word “elegance” in the context of this major hack) is to generate the iframe using javascript. You may do this on the page load, when you create the form, whatever. Just do it before the user submits the file!
Well, it’s easy, right? Something like this does the trick:
var objBody = document.getElementsByTagName("body").item(0);
var iframe = document.createElement('iframe');
iframe.id = 'fileUploaderEmptyHole';
iframe.name = 'fileUploaderEmptyHole';
iframe.width = 0;
iframe.height = 0;
iframe.marginHeight = 0;
iframe.marginWidth = 0;
objBody.insertBefore(iframe, objBody.firstChild);
That’s cool, right? Just run this and the iframe will be created. Submit the form, the result goes in the hidden iframe, everything works, we are done, let’s go home. Well… all true until you actually test it on Internet Explorer…
If you test this on IE, the result will be a new window being created when you submit, which is clearly not what you want. Well, I had a hard time finding the problem, so here goes: if you create the iframe using JavaScript, IE wont set it’s name. Yes, the “iframe.name = ‘fileUploaderEmptyHole’;” line will simply be ignored. It does nothing. So, as you don’t have any frame called ‘fileUploaderEmptyHole’, when you submit the form, it will create a new window named ‘fileUploaderEmptyHole’ and display the result on it.
The solution it to hack this even further. Specifically:
iframe = document.createElement('<iframe name="fileUploaderEmptyHole">');
Yeah! Now you’re thinking “WTF?”. Yes, yes, it’s true. This actually works on IE, with the expected (?) results. Well, you still have to support the other browsers, but you are lucky, as this will throw an exception on all the non-IE browsers. So, it’s just a matter of catching it, and running the decent version of the code:
var iframe;
try {
iframe = document.createElement('<iframe name="fileUploaderEmptyHole">');
} catch (ex) {
iframe = document.createElement('iframe');
}
iframe.id = 'fileUploaderEmptyHole';
iframe.name = 'fileUploaderEmptyHole';
iframe.width = 0;
iframe.height = 0;
iframe.marginHeight = 0;
iframe.marginWidth = 0;
This is why I love the Web. Or maybe not.
November 29th, 2007 at 7:52 am
THANKS SO MUCH!!!
I was facing that “strange” IE behaviour
and before going crazy I just “googled” for it and… here I am!
WTF is exactly what went through my mind reading your solution!
Thanks again!
March 7th, 2008 at 8:04 am
Thx so much, yesterday i tried to fix this ugly IE bug myself (thinkin’ - what a hell is going on here?!), today - went to google and found your article =) Thx again - it fixed now )
March 20th, 2008 at 3:35 pm
Thank you SO much, you saved me a lot of time. You have a new regular reader to your blog now.
May 15th, 2008 at 11:59 am
You just ended several hours of frustration! Thank you so much!
May 15th, 2008 at 4:32 pm
Thanks a lot for your entry! I remember having read about the same bug in IE for dynamically created INPUT radio buttons a long time ago, but when I experienced the same behavior with an IFRAME today as you it didn’t strike me that I could use the same workaround again (mostly because setting “name” attribute on other tags in IE has worked for me since reading the other article years ago). Building a product that appears faster by forcing competitors to catch more “exceptions” is just so typical for Microsoft marketing :S.
May 29th, 2008 at 7:16 pm
To echo everyone else, thank you! This was exactly what I was looking for.
June 13th, 2008 at 5:26 pm
I spent a few hours searching for this, this saved my rear. Thanks.
Also, it’s worth mentioning that IE has the same problem with dynamically assigning a function to onload(). So if you you want to do an onload() handler for your iframe (when the file is finished uploading, for example) you need to do:
iframe = document.createElement(”);
iframe.onloadHack = function()
{
// do whatever
}
Hope this helps anybody else who was wondering.
Thanks again!
June 13th, 2008 at 5:47 pm
I just discovered the same thing is true for dynamically-created forms. For example, the following works in Firefox but not IE 7 (or presumably 6):
var form = document.createElement(’form’);
form.enctype = ‘multipart/form-data’;
instead, in IE you must do
form = document.createElement(”);
and you should be fine.
August 1st, 2008 at 10:17 am
Thank you ever so much!!!! i’ve been breaking my head for over 4 hours on this!!!!
This is why i love the web too
August 3rd, 2008 at 9:58 pm
Thank you very much for sharing this!
I’ve gone around in circles trying to solve this problem, and your solution nailed it :D!
Awesome! Thanks again :D!