Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Created May 29, 2014 00:54
Show Gist options
  • Save jasonglisson/f744d6730aaa9047fd7b to your computer and use it in GitHub Desktop.
Save jasonglisson/f744d6730aaa9047fd7b to your computer and use it in GitHub Desktop.
Slide toggle on click
$( "#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