Hackerss.com

hackerss
hackerss

Posted on

Javascript Change inner html of a div


//select the div with id of "comments"
const comments = document.getElementById("comments");

//change the inner html of the div with id of "comments" to "Hello World!"
comments.innerHTML = "Hello World!";


Enter fullscreen mode Exit fullscreen mode

Top comments (0)