Guest User

Untitled

a guest
Mar 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $(function(){
  2.  
  3. $('#main_button').click(function(){
  4. $('#one, #two, #three, #four').toggleClass("width", 1000);
  5. return false;
  6. });
  7. });
  8.  
  9. $(function(){
  10.  
  11. $('#main_button').click(function(){
  12. $('#one, #two, #three, #four').animate({'width' :'toggle'}, 1000);
  13. return false;
  14. });
  15. });
  16.  
  17. $(function(){
  18.  
  19. $('#main_button').click(function(){
  20. $('#one, #two, #three, #four').slideToggle({'width' :'toggle'},
  21. 1000);
  22. return false;
  23. });
  24. });
Add Comment
Please, Sign In to add comment