Created
May 29, 2014 00:54
-
-
Save jasonglisson/f744d6730aaa9047fd7b to your computer and use it in GitHub Desktop.
Slide toggle on click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( "#clickme" ).click(function() { | |
$( "#book" ).slideToggle( "slow", function() { | |
// Animation complete. | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment