Is there any way you can add text to the beginning of a tag value like this.
<div id="idName">goes</div>
<script>
document.getElementById("idName").innerHTML += " here.";
</script>
But instead of adding it to the end add it to the beginning. I already tried this.
<div id="idName">goes</div>
<script>
document.getElementById("idName").innerHTML -= "Text ";
</script>