we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "createelement innertext appendchild"
Souleymane
19 Jun 2019
1
2 var para = document.createElement("P");                       // Create a <p> node
3var t = document.createTextNode("This is a paragraph.");      // Create a text node
4para.appendChild(t);                                          // Append the text to <p>
5
6 document.getElementById("myDIV").appendChild(para);           // Append <p> to <div> with id="myDIV"