Just a quick question, can we actually add content to a
<div id="whatEverId">hello one</div>
by utilizing:
document.getElementById("whatEverId").innerHTML += " hello two";
Is there a way to INSERT content into the div without replacing it??? So that I could achieve
<div id="whatEverId">hello one hello two</div>
(using something similar, of course)