Blinking Images With Javascript

Adam Scheinberg’s profile picture

Blinking Images With Javascript

I needed to have an image blink in one of our intranet applications today, so I wrote this quick javascript to accomodate. There aren't many good image blinker scripts online, so I'm adding mine to the mix:
Start by adding this to your javascript file:
function blinkId(id) {
var i = document.getElementById(id);
if(i.style.visibility=='hidden') {
i.style.visibility='visible';
} else {
i.style.visibility='hidden';
}
setTimeout("blinkId('"+id+"')",1000);
return true;
}

And this right before you end your <html> tag:

This will work for images, divs, spans, pretty much any block level element with an id.
Updated 8/19/2008: Fixed a copy/paste bug in this post.
Back to Blog
Ivan
2008-08-04 15:47:48
The correct is:<br />
.....<br />
setTimeout("blinkId('"+id+"')",1000); <br />
return true;<br />
.....
Adam S
2008-08-04 15:53:19
Huh.. I typed it backwards. Obviously, I'm using the solution for real - the real code has it right. Not sure how I transposed it wrong.
Me
2008-08-10 07:49:07
I just pinched this code (knowing very little JS) and swore for a while because it wouldn't work.

Copy and paste into TextMate resulting in some weird versions of apostrophes and quote marks, as if it was using smart quotes. I had to delete them all and retype them manually to get it to work.
Sasha
2010-03-15 05:44:26
It was exactly what I wanted. The script helped. Thanks a ton
patrick
2010-10-27 16:45:28
is there a working example of this somewhere? i can't get it to work
Ran
2011-03-08 03:47:49
Blinking Images With Javascript

Thanks lot its working....
Wale Adebayo
2011-08-28 10:56:36
Thanks, it worked.
gtyuy
2011-10-25 17:13:13
m,hbljkb
Assa
2012-04-05 11:22:37
Thanks it works good....
mawelewele mpho
2012-10-10 10:40:53
can you please send me code of how to make a picture blinking .tnx
mini
2013-09-12 01:28:13
Can i know where the image id and the source of the image where it is would be given. how will it get the image
Fillip Cornor
2014-08-12 02:35:36
I tried the above example with Ivan update as well, no luck. Can someone let me know how to make the text blink?
Denz
2018-07-20 15:00:12
This works great, but is there a way to make it blink just once? Thanks for posting!
Back to Blog