topical media & game development 
  
 
 
 
 
  
    
    
  
 professional-javascript-06-insertBeforeExample.htm / htm
  <html>
      <head>
          <title>insertBefore() Example</title>
          <script type="text/javascript">
              function insertMessage() {
                  var oNewP = document.createElement("p");
                  var oText = document.createTextNode("Hello Universe!");
                  oNewP.appendChild(oText);
                  var oOldP = document.getElementsByTagName("p")[0];
                  document.body.insertBefore(oNewP, oOldP);
              }
          </script>
      </head>
      <body onload="insertMessage()">
          <p>Hello World!</p>
      </body>
  </html>
  
  
  
(C) Æliens 
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher. 
In case of other copyright issues, contact the author.