Skip to content
Michael edited this page Jan 4, 2017 · 1 revision

filter Fired after filtering is complete. Accepts two arguments: original event and an array of matches.

For example:

$("select").multiselect().multiselectfilter({
    filter: function(event, matches){  
        // find the first matching checkbox
        var first_match = $( matches[0] );
    }
});
Clone this wiki locally