Don’t Blink!

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();


Try it!

One comment

  • Aaron
    January 11, 2012 - 14:37 | Permalink

    Warning; clicking “Try it!” more than once may be hazardous to your mental well being.

  • Leave a Reply

    Your email address will not be published. Required fields are marked *

    *

    You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

    Page optimized by WP Minify WordPress Plugin