Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function()
  2. {
  3.   $('#togglebutton').click(function() {
  4.     if($(this).css("margin-right") >= "20%")
  5.     {
  6.         $('.sliderCalc').animate({"margin-right": '-=20%'});
  7.         $('#togglebutton').animate({"margin-right": '-=20%'});
  8.     }
  9.     else
  10.     {
  11.         $('.sliderCalc').animate({"margin-right": '+=20%'});
  12.         $('#togglebutton').animate({"margin-right": '+=20%'});
  13.     }
  14.   });
  15.  });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement