Answers for "append text html"

6

.append js

let parent = document.createElement("div")
parent.append("Some text")

console.log(parent.textContent) // "Some text"
Posted by: Guest on June-03-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 "Javascript"

Browse Popular Code Answers by Language