Answers for "add html with javascript"

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
0

Inserting HTML elements with JavaScript

function create(htmlStr) {
    var frag = document.createDocumentFragment(),
        temp = document.createElement('div');
    temp.innerHTML = htmlStr;
    while (temp.firstChild) {
        frag.appendChild(temp.firstChild);
    }
    return frag;
}

var fragment = create('<div>Hello!</div><p>...</p>');
// You can use native DOM methods to insert the fragment:
document.body.insertBefore(fragment, document.body.childNodes[0]);
Posted by: Guest on February-24-2020
1

javascript add to html

<script src ="path/your js file name"></script>
Posted by: Guest on June-17-2021
-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 "add html with javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language