Skip to content

Instantly share code, notes, and snippets.

@lou
Created August 24, 2011 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lou/1168791 to your computer and use it in GitHub Desktop.
Save lou/1168791 to your computer and use it in GitHub Desktop.
multiselect optgroup collapsable
$('#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