We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
filter Fired after filtering is complete. Accepts two arguments: original event and an array of matches.
filter
For example:
$("select").multiselect().multiselectfilter({ filter: function(event, matches){ // find the first matching checkbox var first_match = $( matches[0] ); } });