Wondering why I can\'t get document.getElementById(\"my_div\").innerHTML to update the DOM when I re-assign the variable. For example:
document.getElementById(\"my_div\").innerHTML
you should set the innerHTML value like
var myDivValue = document.getElementById("my_div").innerHTML = "Hello";