H houssam_ballout New Member Feb 26, 2008 #1 Hello all, I tried this out on Firefox and is working, but not on IE. <blink>Test</blink> Why?
S SirKenin banned Feb 27, 2008 #2 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.
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.
H houssam_ballout New Member Feb 27, 2008 #4 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
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