Since <blink> and text-decoration: blink; don’t work in Webkit or IE9…
.invisible {
visibility: hidden; }
$.fn.blink = function(){
setInterval($.proxy(function() {
this.each(function() {
$(this).toggleClass('invisible');
});
}, this), 500);
};
$('a').blink();
One comment
Warning; clicking “Try it!” more than once may be hazardous to your mental well being.