Answers for "how to add html with javascript"

8

how to add javascript in html

<script src="script.js"></script>
Posted by: Guest on May-19-2020
5

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>
Posted by: Guest on August-02-2020
12

js create element

var newDiv = document.createElement("div");
document.body.appendChild(newDiv);
Posted by: Guest on April-04-2020
1

javascript add to html

<script src ="path/your js file name"></script>
Posted by: Guest on June-17-2021

Code answers related to "how to add html with javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language