Is there a way to write something AFTER <body> tag . I need this because I was given permission to edit the <head> ONLY . It is used for Friendster profile . I wanna add a button to my profile page . Is there any way ?
IF CAN , I WANT :
I CAN CHOOSE WHERE I WANT THE SCRIPT TO GO . MAYBE AFTER eg: <br clear="all" />
But I cant edit the <body> part , I want the codes in <head> that can insert codes into </body> . How ?
Anyway , thx for making the codes .
You might wanna take a look at node manipulation (the stuff SystemWisdom was talking about)
With this you can insert html elements and text anywhere in the <body> section of your page from a javascript somewhere else in the document (eg. the head:D)
I would recomend catching some tutorial with google but my page (majorly under construction) is a decent example, where the linkmenu creates itself as the page is loaded:
lukedk.frih.net/
If you view the source you will notice the lack of menu in the body section.
I have made a few empty divs which javascript then fills out onload using "parent.appendChild(newchild);"
Hope this helps you