Document createTextNode() Method - Create a <p> element with some text: - Javascript DOM

Javascript examples for DOM:Document createTextNode

Description

Document createTextNode() Method - Create a <p> element with some text:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {/* w w  w .j  a  va  2  s .co  m*/
    border: 1px solid black;
    margin-bottom: 10px;
}
</style>
</head>
<body>

<div id="myDIV">
A DIV element
</div>

<button onclick="myFunction()">Test</button>

<script>
function myFunction() {
    var para = document.createElement("P");
    var t = document.createTextNode("This is a paragraph.");
    para.appendChild(t);
    document.getElementById("myDIV").appendChild(para);
}
</script>

</body>
</html>

Related Tutorials