Answers for "js add html"

11

create element javascript with id

var btn = document.createElement('div'); 
btn.setAttribute("id", "div1");
Posted by: Guest on June-15-2020
11

adding javascript in html

<script type="text/javascript" src="path-to-javascript-file.js"></script>
Posted by: Guest on March-08-2020
1

how to insert html in javascript

var h = document.getElementById("myH2");
h.insertAdjacentHTML("afterend", "<p>My new paragraph</p>");
Posted by: Guest on July-13-2021
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
1

js add more text to element

document.getElementById("p").textContent += " This is the text from javascript.";

<p id ="p">This is the text from HTML.</p>
Posted by: Guest on June-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language