Created
August 24, 2011 18:30
-
-
Save lou/1168791 to your computer and use it in GitHub Desktop.
multiselect optgroup collapsable
This file contains 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
$('#ms-YOUR_SELECT_ID .ms-selectable').find('li.ms-elem-selectable').hide(); | |
$('.ms-optgroup-label').click(function(){ | |
$(this).nextAll('li').toggle(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment