Answers for "add html in js"

11

how to add elements in javascript html

//adding 'p' tag to body

  var tag = document.createElement("p"); // <p></p>
  var text = document.createTextNode("TEST TEXT"); 
  tag.appendChild(text); // <p>TEST TEXT</p>
  var element = document.getElementsByTagName("body")[0];
  element.appendChild(tag); // <body> <p>TEST TEXT</p> </body>
Posted by: Guest on May-31-2020
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
-1

how to add javascript in html

$(document).ready(function() {
  // add your code here
})
Posted by: Guest on April-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language