To blink a text on button in IE, chrome, safari either using css or JQuery
$('.blink').css('text-decoration','blink');
will work in Firefox, not in IE.
Here I want to blink the value of button, not the button entirely.
I am using
<input id="button12" type="button" class ="button-click" value="X">
Here I want to blink button value ‘X’ only and button will remains unchanged in blink of value i.e button will not blink.
Just for the fun of it, here’s one that animates:
With a FIDDLE!
__
And one that does not animate:
Also with a FIDDLE!