Element appendChild() Method - Create a <p> element with some text and append it to the end of the document body: - Javascript DOM

Javascript examples for DOM:Element appendChild

Description

Element appendChild() Method - Create a <p> element with some text and append it to the end of the document body:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

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

<script>
function myFunction() {/*from www .j  av a 2  s.c om*/
    var x = document.createElement("P");
    var t = document.createTextNode("This is a paragraph.");
    x.appendChild(t);
    document.body.appendChild(x);
}
</script>

</body>
</html>

Related Tutorials