Last active
August 29, 2015 14:02
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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