add text with javascript code example
Example 1: javascript append to paragraph
var parElement = document.getElementById("myPar");
var textToAdd = document.createTextNode("Text to be added");
parElement.appendChild(textToAdd);
<p id="myPar"></p>
Example 2: code for adding new elements in javascriipt js
<html>
<head>
<title>t1</title>
<script type="text/javascript">
function addNode()
{var newP = document.createElement("p");
var textNode = document.createTextNode(" This is a new text node");
newP.appendChild(textNode);
document.getElementById("firstP").appendChild(newP); }
</script> </head>
<body> <p id="firstP">firstP<p> </body>
</html>
Example 3: js add more text to element
document.getElementById("p").textContent += " This is the text from javascript.";
<p id ="p">This is the text from HTML.</p>
Example 4: Inserting HTML elements with JavaScript
function create(htmlStr) {
var frag = document.createDocumentFragment(),
temp = document.createElement('div');
temp.innerHTML = htmlStr;
while (temp.firstChild) {
frag.appendChild(temp.firstChild);
}
return frag;
}
var fragment = create('<div>Hello!</div><p>...</p>');
document.body.insertBefore(fragment, document.body.childNodes[0]);
Example 5: how add text to element in javascript
var p = document.getElementById("p")
p.innerText = p.innerText+" And this is addon."
Example 6: how to add text in javascript
<div id="mass">
<p id="ph1">This is a paragraph.</p>
<p id="ph2">This is another paragraph.</p>
</div>
<script>
var head = document.createElement("h1");
var node = document.createTextNode("New Heading.");
head.appendChild(node);
var ele = document.getElementById("mass");
var child = document.getElementById("ph1");
ele.insertBefore(head,child);
Output :
New Heading.
This is a paragraph.
This is another paragraph.