Lines Matching refs:selector

5 var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,con…
8 jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;
9 if(selector.nodeType){this[0]=selector;
12 }if(typeof selector=="string"){var match=quickExpr.exec(selector);
13 if(match&&(match[1]||!context)){if(match[1]){selector=jQuery.clean([match[1]],context);
15 if(elem){if(elem.id!=match[3]){return jQuery().find(selector);
17 }selector=[];
18 }}else{return jQuery(context).find(selector);
19 }}else{if(jQuery.isFunction(selector)){return jQuery(document)[jQuery.fn.ready?"ready":"load"](sele…
20 }}return this.setArray(jQuery.makeArray(selector));
64 },find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem…
66 return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):…
79 },filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,fun…
80 })||jQuery.multiFilter(selector,this));
81 },not:function(selector){if(selector.constructor==String){if(isSimple.test(selector)){return this.p…
82 }else{selector=jQuery.multiFilter(selector,this);
83 }}var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;
84 return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;
86 …nction(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=="str…
87 },is:function(selector){return !!selector&&jQuery.multiFilter(selector,this).length>0;
88 },hasClass:function(selector){return this.is("."+selector);
348 }},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn); argument
349 if(selector&&typeof selector=="string"){ret=jQuery.multiFilter(selector,ret);
365 },remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this)… argument