Javascript DOM HTML Node appendChild() Method append to document

Introduction

Create a <p> element with some text and append it to the end of the document body:

Click the button to create a P element with some text, and append it to the document's body.

View in separate window

<!DOCTYPE html>
<html>
<body>

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

<script>
function myFunction() {/*from w ww .  j  a  v a2s  .  co m*/
  var x = document.createElement("P");
  var t = document.createTextNode("This is a paragraph.");
  x.appendChild(t);
  document.body.appendChild(x);
}
</script>

</body>
</html>



PreviousNext

Related