Let's say I have this paragraph:
<p id="paragraph">Hello World!</p>
I want to add "Hello StackOverflow! " at the start of the paragraph.
document.getElementById("paragraph").innerHTML += "Hello StackOverflow! "
Adding the above line didn't work as it adds the content to the end of the paragraph, not the start.
Is there a way to do this?
Thanks!