I am using following code to blink a textbox value, but it is not supported by Firefox, IE. How can i achieve? May i do with fade to function.. If yes means help me.
<script>
$(document).ready(function(){
$("#blinkchk").click(function(){
var a=$("#text").val();
a.blink();
});
});
</script>
<body>
<textarea id="text"></textarea>
<input type="checkbox" name="check" id="blinkchk" value="Blink" />Blink
</body>