Skip to content

Instantly share code, notes, and snippets.

@uhtred
Created October 10, 2014 13:57
Show Gist options
  • Save uhtred/dc39bee26b6ac4f4c01c to your computer and use it in GitHub Desktop.
Save uhtred/dc39bee26b6ac4f4c01c to your computer and use it in GitHub Desktop.
JS:Chosen + Validate Solution
//On validate:
ignore: function(index, element) {
return !!$(element).parents(':hidden').length;
}
//On chosen:
$('.chosen-select').chosen().change(function() {
$(this).trigger('click');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment