What is an easy way to make text blinking in jQuery and a way to stop it? Must work for IE, FF and Chrome. Thanks
$.fn.blink = function(times, duration) { times = times || 2; while (times--) { this.fadeTo(duration, 0).fadeTo(duration, 1); } return this; };