I\'m trying to avoid using innerHTML because it causes my browser to crash, probably due to the 250 milliseconds refresh rate.
innerHTML
Anyway, I would rather ha
Then use CSS to hide and unhide the div. You can do something like this:
changeIt.style.visibility = 'hidden';
to make the div disappear. And
changeIt.style.visibility = 'visible';
to show it again.