I have many in my html and want to add more through javascript. However, using innerHTML is just replacin
innerHTML
I think if you want to add content directly to the body, the best way is:
document.body.innerHTML = document.body.innerHTML + "bla bla";
To replace it, use:
document.body.innerHTML = "bla bla";