Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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>
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #code #adding #elements #javascriipt #js
ADD COMMENT
Topic
Name
1+7 =