Hi.
I'm trying to insert some text between <head> and <body> but I'm
not able.
I try with:
--------
bodyPoint = document.getEle mentsByTagName( 'body');
var myLink = document.create Element("a");
myLink.href = "http://www.yahoo.com";
myLink.innerHTM L = "Yahoo";
bodyPoint.inser tBefore(myLink, bodyPoint);
---------
but it doesn't work. I get this error
-----------
bodyPoint.inser tBefore is not a function
--------------
What am I doing wrong? Thx.
I'm trying to insert some text between <head> and <body> but I'm
not able.
I try with:
--------
bodyPoint = document.getEle mentsByTagName( 'body');
var myLink = document.create Element("a");
myLink.href = "http://www.yahoo.com";
myLink.innerHTM L = "Yahoo";
bodyPoint.inser tBefore(myLink, bodyPoint);
---------
but it doesn't work. I get this error
-----------
bodyPoint.inser tBefore is not a function
--------------
What am I doing wrong? Thx.
Comment