Create Paragraph element and set the text
|
|
<html> <head> <title>appendChild() Example</title> <script type="text/javascript"> function appendMessage() { var oNewP = document.createElement("p"); var oText = document.createTextNode("www.navioo.com"); oNewP.appendChild(oText); document.body.appendChild(oNewP); } </script> </head> <body onload="appendMessage()"> <P>Hello World!</p> </body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
|