Skip to content

Instantly share code, notes, and snippets.

@mrjasonweaver
Created May 21, 2014 19:55
Show Gist options
  • Save mrjasonweaver/461df9be88be23baacc5 to your computer and use it in GitHub Desktop.
Save mrjasonweaver/461df9be88be23baacc5 to your computer and use it in GitHub Desktop.
Show/Hide pattern
Site = {};
// show/hide pattern
Site.showHide = function(element, container) {
$(element).toggleClass("active");
$(container).toggleClass("show");
};
$(document).ready(function() {
Site.showHide('#button', '#container');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment