Working with the javascript dom?

Example:


  document.getElementById("demo").innerHTML = "Hello, World!";
  

Solution:

The Document Object Model (DOM) in JavaScript allows you to interact with the contents of a webpage. In the example, we're changing the content of an element with the ID "demo".

Beginner's Guide to JavaScript