I have this code
setInterval('YellowBlockHide()', 9000);
function YellowBlockHide() {
alert('test');
document.getElementById("helpdiv").style.display=" none";
}
And my DIV tag looks like this
<div id="helpdiv" class="YellowAlert">
<font class="BlackNormal">My Alert message</font>
</div>
I get the alert messaeg but my DIV tag does not hide, it does in Chrome but not IE8
Why?