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
Win a copy of
TDD for a Shopping Website LiveProject
this week in the
Testing
forum!
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
Paul Clapham
Ron McLeod
Jeanne Boyarsky
Tim Cooke
Sheriffs:
Liutauras Vilda
paul wheaton
Henry Wong
Saloon Keepers:
Tim Moores
Tim Holloway
Stephan van Hulst
Carey Brown
Frits Walraven
Bartenders:
Piet Souris
Himai Minh
Forum:
HTML Pages with CSS and JavaScript
blink onInternet Explorer
Fernando Dominguez
Ranch Hand
Posts: 111
I like...
posted 13 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 13 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
If you are using a wood chipper, you are doing it wrong. Even on this tiny ad:
free, earth-friendly heat - a kickstarter for putting coin in your pocket while saving the earth
https://coderanch.com/t/751654/free-earth-friendly-heat-kickstarter
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...