Jump to content

Blinking String In Ie


siansoft

Recommended Posts

Not my code... but works in FF3, Opera 9.52, and IE6.Unsure of IE7+.note: It does not work in Safari(win) 3.2

<body  onload="setInterval('blinkIt()',500)"><script type="text/javascript">function blinkIt() { if (!document.all) return; else {   for(i=0;i<document.all.tags('blink').length;i++){	  s=document.all.tags('blink')[i];	  s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';   } }}</script><blink>Am i blinking ?</blink>

not 100% sure if this is ok or not, but the code was originally from (http://www.rgagnon.com/jsdetails/js-0098.html). just giving credit where credit is due... and google was the original finder of that for me

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...