Skip to content

Instantly share code, notes, and snippets.

@mapsam
Created May 9, 2014 17:46
Show Gist options
  • Save mapsam/cb1ad159fbfd9fe688dd to your computer and use it in GitHub Desktop.
Save mapsam/cb1ad159fbfd9fe688dd to your computer and use it in GitHub Desktop.
jquery open/close toggle stuff
$(document).ready(function($){
$('#open').click(function(){
$('#element').toggle(300).addClass('active');
});
$('#close').click(function(){
if($('#element').hasClass('active')) {
$('#element').toggle(300).removeClass('active');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment