1. jQuery.expr[':'].aFilter =
        function(elem, index, match){
                return true; // Return true/false as per need
        };
        $('div.red').filter(':aFilter').doSomething();
i want pass some custom arguments to "jQuery.expr[':'].aFilter" function, is it possible to do it
 
     
    