Link to home
Start Free TrialLog in
Avatar of a_sameer
a_sameer

asked on

Blink Text

How can make the text is blink in ie4?
Avatar of Christian_Wenz
Christian_Wenz

the <BLINK> tag only works with Netscape.
Using IE, you can use a DHTML solution: with timeouts, you periodically set the color of the text to either text color or the background color. However, I personally would refrain from using such effects, to me, they look quite annoying.
Avatar of a_sameer

ASKER

What can i do with DHTML ?
ASKER CERTIFIED SOLUTION
Avatar of nax
nax

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
oops, i made a mistake!

please change all the function blink(layer) part to
     
function blink(layer) {
     vis = document.all[layer].style.visibility;
     if (vis == "visible") vis = "hidden";
     else vis = "visible";
     document.all[layer].style.visibility = vis;
     tstring = "blink(\""+layer+"\")";
     setTimeout(tstring, delay);
     }

this function can also be used to blink any other layer, just change the argument of blink to the name of the layer.

regards,
nax