Answers for "add html to dom with javascript"

2

javascript append to paragraph

// In the JS script

var parElement = document.getElementById("myPar");
var textToAdd = document.createTextNode("Text to be added");
parElement.appendChild(textToAdd);

//In the HTML file

<p id="myPar"></p>
Posted by: Guest on August-27-2020
1

how to appendChild in the begin of the div javascript

var element = document.getElementById("div1");
element.insertBefore(para, element.firstChild);
Posted by: Guest on June-24-2020

Code answers related to "add html to dom with javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language