We Recommend

Pro JavaScript Techniques Pro JavaScript Techniques
Pro JavaScript Techniques is the ultimate JavaScript book for the modern web developer. It provides everything you need to know about modern JavaScript, and shows what JavaScript can do for your web sites. This book doesn't waste any time looking at things you already know, like basic syntax and structures.


Posted By

buscarini on 05/20/08


Tagged


Versions (?)


Añadir un hijo a un elemento de HTML (p.ej. un div)


Published in: JavaScript 


  1. newnode=document.createElement("span");
  2. newnode.innerHTML="<div id=\"editMessageContainer\"> blah </div>";
  3. document.body.appendChild(newnode);

Report this snippet 

You need to login to post a comment.