blink not working on IE

Who cares? The first thing you never do is make text blink or scroll sideways on a webpage. Leave it to Firefox, for all the stuff it screws up, to get something like that to work.
 
I'd solved it by adding:

<SCRIPT>
<!--
function doBlink() {
var blink = document.all.tags("BLINK")
for (var i=0; i<blink.length; i++)
blink.style.visibility = blink.style.visibility == "" ? "hidden" : ""
}

function startBlink() {
if (document.all)
setInterval("doBlink()",1000)
}
window.onload = startBlink;
// -->
</SCRIPT>

to the head part

then <blink>where I want in the body</blink
and it works.
Thanks for your help all
 
Back
Top