I need to insert a div in the DOM after the "html" tag. It works on all browser except in IE7.

After several test, it looks like i can't access to the html element with IE7.

For example :

$('html').append('mycontent'); //works with all browser except IE

Someone have an idea of how I can bypassing this IE7 limitation ?

Thank you.

ps: I test on IE9 in IE7 mode

link|improve this question
4  
Maybe this is being appended outside of your body tag - hence not being rendered? – Dutchie432 Dec 29 '11 at 19:06
Why do you think you need to do that? – Pointy Dec 29 '11 at 19:18
feedback

1 Answer

up vote 10 down vote accepted

<html> is the root element. Aside from the DOCTYPE, there should be NO nodes outside it, and it should contain only TWO nodes, <head> and <body>. You should append new nodes to the <body>, maybe to the <head> if relevant, but never to the <html> itself.

link|improve this answer
+1 append to the body tag. But, of course, the append method would add content before the closing html tag and not 'outside it'. – Craig Dec 29 '11 at 19:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.