hidden: “a.type==’hidden’||jQuery.css(a,’display’)==’none’||jQuery.css(a,’visibility’)==’hidden'”,
// Form attributes
enabled: “!a.disabled”,
disabled: “a.disabled”,
checked: “a.checked”,
selected: “a.selected || jQuery.attr(a, ‘selected’)”,
// Form elements
text: “a.type==’text'”,
radio: “a.type==’radio'”,
checkbox: “a.type==’checkbox'”,
file: “a.type==’file'”,
password: “a.type==’password'”,
submit: “a.type==’submit'”,
image: “a.type==’image'”,
reset: “a.type==’reset'”,
button: “a.type==’button'”,
input: “a.nodeName.toLowerCase().match(/input|select|textarea|button/)”
},
“.”: “jQuery.className.has(a,m[2])”,
“@”: {
“=”: “z==m[4]”,
“!=”: “z!=m[4]”,
“^=”: “z && !z.indexOf(m[4])”,
“$=”: “z && z.substr(z.length – m[4].length,m[4].length)==m[4]”,










