Skip to content

Instantly share code, notes, and snippets.

@Willem-Siebe
Last active August 29, 2015 14:02
Show Gist options
  • Save Willem-Siebe/d04636bb5eb42b28cdab to your computer and use it in GitHub Desktop.
Save Willem-Siebe/d04636bb5eb42b28cdab to your computer and use it in GitHub Desktop.
Toggling content using Twitter Bootstrap (V3) classes and jQuery, see also my answer here: http://stackoverflow.com/a/24338835/2312234.
// Toggling content using Twitter Bootstrap (V3) and jQuery, see https://gist.github.com/Willem-Siebe/d04636bb5eb42b28cdab.
jQuery(document).ready(function() {
jQuery(".wsis-toggle").click(function(){
jQuery(".wsis-collapse").toggle().toggleClass( "hidden show" );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment