Advertisement
Sebuahhobi98

blink

Mar 10th, 2022
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function blink(selector){
  2.             $(selector).fadeOut('slow', function(){
  3.                 $(this).fadeIn('slow', function(){
  4.                     blink(this);
  5.                 });
  6.             });
  7.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement