Google News
logo
JavaScript - Interview Questions
Write the code for adding new elements dynamically?
<html> 
	<head> 
	<title>Adding New Elements</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>
Advertisement