Hello, tell me how to make the button color blink, otherwise my current will blink once and stop.
$(function () { $("#Button").css("color", "black"); setTimeout(function () { $("#Button").css("color", "black"); setInterval(function () { $("#Button").css("color", "green"); }, 500) }, 3000); });
-
<a id="Button" href="#"></a>