The HTML DOM allows JavaScript to change the content of HTML elements.
Changing HTML Content
The easiest way to modify the content of an HTML element is by using the innerHTML
property.
To change the content of an HTML element, use this syntax :
document.getElementById(id).innerHTML = new HTML
This example changes the content of a <p>
element : Continue reading JavaScript HTML DOM – Changing HTML