Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function blink(selector){
- $(selector).fadeOut('slow', function(){
- $(this).fadeIn('slow', function(){
- blink(this);
- });
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement