Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within HTML Pages with CSS and JavaScript
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
Ron McLeod
paul wheaton
Jeanne Boyarsky
Sheriffs:
Paul Clapham
Devaka Cooray
Saloon Keepers:
Tim Holloway
Roland Mueller
Himai Minh
Bartenders:
Forum:
HTML Pages with CSS and JavaScript
blink onInternet Explorer
Fernando Dominguez
Ranch Hand
Posts: 111
I like...
posted 16 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Is There any way to get a text to blink on internet explorer?
I know the in firefox is posible with <blink>, but not on explorer.
Is there anything similar to blink on internet explorer?
Thanks.
Eric Pascarello
author
Posts: 15385
6
posted 16 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
The blink tag is depreciated for a reason, hence why it is not supported.
If you want to do it with JavaScript it is a few simple lines
function showHide(){ var vis = (document.getElementById("yourId").style.visibility==="hidden")?"visible":"hidden"; document.getElementById("yourId").style.visibility = vis; } window.onload = function(){ blink = window.setInterval( function(){ showHide() }, 500); }
Eric
Did you see how Paul
cut 87% off of his electric heat bill with 82 watts of micro heaters
?
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Error Handling in Servlets
Bind Exception : 443 Address already in use
cant run Java rules round up game
site development
Words that differ by one letter
More...