Lines Matching defs:elem

3220 …},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAtt…  argument
3283 }},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden" argument
3284 },disabled:function(elem){return elem.disabled===true argument
3285 },checked:function(elem){return elem.checked===true argument
3286 },selected:function(elem){elem.parentNode.selectedIndex; argument
3288 },parent:function(elem){return !!elem.firstChild argument
3289 },empty:function(elem){return !elem.firstChild argument
3290 },has:function(elem,i,match){return !!Sizzle(match[3],elem).length argument
3291 },header:function(elem){return/h\d/i.test(elem.nodeName) argument
3292 },text:function(elem){return"text"===elem.type argument
3293 },radio:function(elem){return"radio"===elem.type argument
3294 },checkbox:function(elem){return"checkbox"===elem.type argument
3295 },file:function(elem){return"file"===elem.type argument
3296 },password:function(elem){return"password"===elem.type argument
3297 },submit:function(elem){return"submit"===elem.type argument
3298 },image:function(elem){return"image"===elem.type argument
3299 },reset:function(elem){return"reset"===elem.type argument
3300 },button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON" argument
3301 },input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName) argument
3302 }},setFilters:{first:function(elem,i){return i===0 argument
3303 },last:function(elem,i,match,array){return i===array.length-1 argument
3304 },even:function(elem,i){return i%2===0 argument
3305 },odd:function(elem,i){return i%2===1 argument
3306 },lt:function(elem,i,match){return i<match[3]-0 argument
3307 },gt:function(elem,i,match){return i>match[3]-0 argument
3308 },nth:function(elem,i,match){return match[3]-0==i argument
3309 },eq:function(elem,i,match){return match[3]-0==i argument
3310 }},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name]; argument
3318 }}}},CHILD:function(elem,match){var type=match[1],node=elem; argument
3335 }}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match argument
3336 },TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match argument
3337 },CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(m… argument
3338 },ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](el… argument
3340 },POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name]; argument
3393 Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAt… argument
3410 …&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAtt… argument
3471 var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.o… argument