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
Here's mine ; it gives you control over the 3 parameters that matter:
.
setInterval(function() { $('.blink').fadeIn(300).fadeOut(500); }, 1000);