Basic JavaScript Question:
Download Questions PDF

How to Add new elements dynamically?

Answer:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Title of page</title>
<script type="text/javascript">
function addNode() {
var newP = document.createElement("p");
var textNode = document.createTextNode(" I'm a new text node");
newP.appendChild(textNode);
document.getElementById("firstP").appendChild(newP);
}
</script>
</head>
<body onload="addNode();" style=" background: url('../images/Sand-1280.jpg'); background-color: yellow;">
<p id="firstP">firstP<p>
</body>
</html>

Download JavaScript Interview Questions And Answers PDF

Previous QuestionNext Question
To write messages to the screen without using "document.write()"? How to have an element invoke a JavaScript on selection, instead of going to a new URL?