Skip to content

Instantly share code, notes, and snippets.

@brycemcd
Created January 19, 2011 17:47
Show Gist options
  • Save brycemcd/786535 to your computer and use it in GitHub Desktop.
Save brycemcd/786535 to your computer and use it in GitHub Desktop.
a simple slide in / slide out script in jquery
$(function(){
$("#slider").slideOut();
$("#clickme").click(function(){
$("#slider").slideToggle();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment