Guest User

Untitled

a guest
Dec 11th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Javascript statments are executed line by line,with effects, the next line of code can be runn
  2. even though the effect is not finished. This can create a callback function
  3.  
  4. A callback function is executed after the current effect is finished
  5.  
  6. $(selector).hide(speed, callback);
  7.  
  8. without the callback parameter, and the effect will be displayed before the effect is completed
Add Comment
Please, Sign In to add comment