Skip to content

Instantly share code, notes, and snippets.

@craiger522
Created January 6, 2014 03:57
Show Gist options
  • Save craiger522/8277993 to your computer and use it in GitHub Desktop.
Save craiger522/8277993 to your computer and use it in GitHub Desktop.
Show/hide toggle with default hidden
$(document).ready(function() {
var par = $('p');
$(par).hide();
$('#button').click(function(e) {
$(par).slideToggle('slow');
e.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment