/ Published in: jQuery
Assign to the text or html element you want to blink & put the snippet code before closing head tag.
Expand |
Embed | Plain Text
<script type="text/javascript" > function blink(selector){ $(selector).fadeOut('slow', function(){ $(this).fadeIn('slow', function(){ blink(this); }); }); } $(document).ready(function(){ blink('.blink'); }); </script>
You need to login to post a comment.
