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
You can also use the standard CSS way (no need for JQuery plugin, but compatible with all browsers):
// Start blinking $(".myblink").css("text-decoration", "blink"); // Stop blinking $(".myblink").css("text-decoration", "none");
W3C Link