the demo is here
(can't reproduce it on jsfiddle, since they don't allow ajax to sufficient extent)
Imagine, you have iframe on your page
<iframe id="if1" src="/some/url"> </iframe>
/some/url returns simple text: <form>text</form><br/>
And also, once iframe is loaded, you access its contents from Javascript.
var io = document.getElementById('if1');
alert(io.contentWindow.document.body.innerHTML);
Normal browsers, obviously, return content exactly as it is. But internet explorer 8 returns something funny
text</FORM><BR>
Even though right-click/view-source on iframe shows correct content: <form>text</form><br/>
I didn't try other IE versions.
Did you see this issue before? This is a very simplified version of the problem I've met while adapting webapp to IE. Basically, I do ajax requests through iframe (not xhr, I need to upload files) and html fragments are returned.
Thanks a lot!
<html><head>....)? – Pekka 웃 Jan 28 '11 at 16:01content-typealong with the inlying document. That shouldn't make a difference because the .html will automatically be interpreted as HTML, but it would still be a good thing to send it along – Pekka 웃 Jan 28 '11 at 16:02