Create a Paragraph Element - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Paragraph

Introduction

You can create a <p> element by using the document.createElement() method:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">create a P element</button>

<script>
function myFunction() {//w  w w.  j av  a  2 s.  c  o  m
    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