florida
08-17-2004, 06:37 PM
Anyway to get the blink to work in IE. It works with the blink tag in IE.
Is there any JavaScript I can use to get it to work in IE?
Is there any JavaScript I can use to get it to work in IE?
|
||||
Blink in IEflorida 08-17-2004, 06:37 PM Anyway to get the blink to work in IE. It works with the blink tag in IE. Is there any JavaScript I can use to get it to work in IE? Willy Duitt 08-17-2004, 06:52 PM Try changing the style visibility between visible and hidden.... .....Willy jkd 08-17-2004, 07:41 PM Put this in the head of your document: <script type="text/javascript"> function assignBlink(el) { el.runtimeStyle.visibility = "visible"; setInterval(function() { el.runtimeStyle.visibility = (el.currentStyle.visibility == "visible") ? "hidden": "visible"; }, 500); } </script> <style type="text/css"> * html blink { visibility: expression(assignBlink(this)); } </style> florida 08-19-2004, 05:34 PM thanks! |
| |||
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum