Hacker News new | ask | show | jobs
by jQueryIsAwesome 5176 days ago
There you go.

    jQuery.fn.blink = function(){
    	var that = this;
    	setInterval(function(){
    		that.css("opacity",function(i,v){return 1>>v})
    	},1500)	
    	return this;
    }
1 comments

Surely visibility, not opacity. Has to be quicker.