Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function CallThis(){
  2. var div = $("div");
  3. div.animate({left: '100px'}, "slow");
  4. div.animate({fontSize: '3em'}, "slow");
  5. }
  6.  
  7. $(document).ready(function(){
  8. CallThis();
  9. })
  10.  
  11. $(document).ready(function(){
  12. // this block will be executed when the DOM is fully loaded
  13. var div = $("div");
  14. div.animate({left: '100px'}, "slow");
  15. div.animate({fontSize: '3em'}, "slow");
  16.  
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement