I am trying to use insertBefore in js like this:

var p = document.createElement("p");
p.innerHTML = "test1";
document.body.insertBefore(p, null);

var p = document.createElement("p");
p.innerHTML = "test2";
document.body.insertBefore(p, null);

But that would add the last p element just before the close of the body tag, how could I use it so it will be added to the top when it opens? So the last element added will be the first element inside the body tag.

I tried:

document.body.insertBefore(p, document.getElementsByTagName('body')[0]);

But firebug shows:

Node was not found" code: "8

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can get the first child of the body element with the firstChild property. Then use it as the reference.

document.body.insertBefore(p, document.body.firstChild);

jsFiddle.

link|improve this answer
feedback

You have to insert before something. document.getElementsByTagName('body')[0] is the body element (the syntax is a bit of a trick to get the body element in all browsers)1. If you want to insert into the body, you want to insert before the first element of it. That could look like this:

var body   = document.body || document.getElementsByTagName('body')[0],
    newpar = document.createElement('p');
newpar.innerHTML = 'Man, someone just created me!';
body.insertBefore(newpar,body.childNodes[0]);

1 in some browsers it's document.body, other document.documentElement etc., but in all browsers the tagname is body

link|improve this answer
Which browsers don't support document.body? – alex Aug 29 '11 at 7:06
@alex you're right, every browser seems to support it. I think it's a trace in my memory from a long gone past. – KooiInc Aug 29 '11 at 9:36
@Kooilnc Thanks for getting back to me, I have a lot of document.body in the wild and was a little worried :P – alex Aug 29 '11 at 9:52
feedback

Your Answer

 
or
required, but never shown

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