2 var chars = jQuery.browser.safari && parseInt(jQuery.browser.version) < 417 ?
4 "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",
5 quickChild = new RegExp("^>\\s*(" + chars + "+)"),
6 quickID = new RegExp("^(" + chars + "+)(#)(" + chars + "+)"),
7 quickClass = new RegExp("^([#.]?)(" + chars + "*)");
11 "": "m[2]=='*'||jQuery.nodeName(a,m[2])",
12 "#": "a.getAttribute('id')==m[2]",
20 last: "i==r.length-1",
25 "first-child": "a.parentNode.getElementsByTagName('*')[0]==a",
26 "last-child": "jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a",
27 "only-child": "!jQuery.nth(a.parentNode.lastChild,2,'previousSibling')",
30 parent: "a.firstChild",
31 empty: "!a.firstChild",
34 contains: "(a.textContent||a.innerText||'').indexOf(m[3])>=0",
37 visible: '"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"',
38 hidden: '"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"',
41 enabled: "!a.disabled",
42 disabled: "a.disabled",
44 selected: "a.selected||jQuery.attr(a,'selected')",
47 text: "'text'==a.type",
48 radio: "'radio'==a.type",
49 checkbox: "'checkbox'==a.type",
50 file: "'file'==a.type",
51 password: "'password'==a.type",
52 submit: "'submit'==a.type",
53 image: "'image'==a.type",
54 reset: "'reset'==a.type",
55 button: '"button"==a.type||jQuery.nodeName(a,"button")',
56 input: "/input|select|textarea|button/i.test(a.nodeName)",
59 has: "jQuery.find(m[3],a).length",
62 header: "/h\\d/i.test(a.nodeName)"
66 // The regular expressions that power the parsing engine
68 // Match: [@value='test'], [@foo]
69 /^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,
71 // Match: :contains('foo')
72 /^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,
74 // Match: :even, :last-chlid, #id, .class
75 new RegExp("^([:.#]*)(" + chars + "+)")
78 multiFilter: function( expr, elems, not ) {
81 while ( expr && expr != old ) {
83 var f = jQuery.filter( expr, elems, not );
84 expr = f.t.replace(/^\s*,\s*/, "" );
85 cur = not ? elems = f.r : jQuery.merge( cur, f.r );
91 find: function( t, context ) {
92 // Quickly handle non-string expressions
93 if ( typeof t != "string" )
96 // Make sure that the context is a DOM Element
97 if ( context && !context.nodeType )
100 // Set the correct context (if none is provided)
101 context = context || document;
103 // Initialize the search
104 var ret = [context], done = [], last;
106 // Continue while a selector expression exists, and while
107 // we're no longer looping upon ourselves
108 while ( t && last != t ) {
114 var foundToken = false;
116 // An attempt at speeding up child selectors that
117 // point to a specific element tag
122 var nodeName = m[1].toUpperCase();
124 // Perform our own iteration and filter
125 for ( var i = 0; ret[i]; i++ )
126 for ( var c = ret[i].firstChild; c; c = c.nextSibling )
127 if ( c.nodeType == 1 && (nodeName == "*" || c.nodeName.toUpperCase() == nodeName.toUpperCase()) )
131 t = t.replace( re, "" );
132 if ( t.indexOf(" ") == 0 ) continue;
135 re = /^([>+~])\s*(\w*)/i;
137 if ( (m = re.exec(t)) != null ) {
140 var nodeName = m[2], mergeNum = jQuery.mergeNum++;
143 for ( var j = 0, rl = ret.length; j < rl; j++ ) {
144 var n = m == "~" || m == "+" ? ret[j].nextSibling : ret[j].firstChild;
145 for ( ; n; n = n.nextSibling )
146 if ( n.nodeType == 1 ) {
147 if ( m == "~" && n.mergeNum == mergeNum ) break;
149 if (!nodeName || n.nodeName.toUpperCase() == nodeName.toUpperCase() ) {
150 if ( m == "~" ) n.mergeNum = mergeNum;
154 if ( m == "+" ) break;
160 // And remove the token
161 t = jQuery.trim( t.replace( re, "" ) );
166 // See if there's still an expression, and that we haven't already
168 if ( t && !foundToken ) {
169 // Handle multiple expressions
170 if ( !t.indexOf(",") ) {
171 // Clean the result set
172 if ( context == ret[0] ) ret.shift();
174 // Merge the result sets
175 done = jQuery.merge( done, ret );
180 // Touch up the selector string
181 t = " " + t.substr(1,t.length);
184 // Optimize for the case nodeName#idName
188 // Re-organize the results, so that they're consistent
190 m = [ 0, m[2], m[3], m[1] ];
193 // Otherwise, do a traditional filter check for
194 // ID, class, and element selectors
199 m[2] = m[2].replace(/\\/g, "");
201 var elem = ret[ret.length-1];
203 // Try to do a global search by ID, where we can
204 if ( m[1] == "#" && elem && elem.getElementById && !jQuery.isXMLDoc(elem) ) {
205 // Optimization for HTML document case
206 var oid = elem.getElementById(m[2]);
208 // Do a quick check for the existence of the actual ID attribute
209 // to avoid selecting by the name attribute in IE
210 // also check to insure id is a string to avoid selecting an element with the name of 'id' inside a form
211 if ( (jQuery.browser.msie||jQuery.browser.opera) && oid && typeof oid.id == "string" && oid.id != m[2] )
212 oid = jQuery('[@id="'+m[2]+'"]', elem)[0];
214 // Do a quick check for node name (where applicable) so
215 // that div#foo searches will be really fast
216 ret = r = oid && (!m[3] || jQuery.nodeName(oid, m[3])) ? [oid] : [];
218 // We need to find all descendant elements
219 for ( var i = 0; ret[i]; i++ ) {
220 // Grab the tag name being searched for
221 var tag = m[1] == "#" && m[3] ? m[3] : m[1] != "" || m[0] == "" ? "*" : m[2];
223 // Handle IE7 being really dumb about <object>s
224 if ( tag == "*" && ret[i].nodeName.toLowerCase() == "object" )
227 r = jQuery.merge( r, ret[i].getElementsByTagName( tag ));
230 // It's faster to filter by class and be done with it
232 r = jQuery.classFilter( r, m[2] );
234 // Same with ID filtering
238 // Try to find the element with the ID
239 for ( var i = 0; r[i]; i++ )
240 if ( r[i].getAttribute("id") == m[2] ) {
251 t = t.replace( re2, "" );
256 // If a selector string still exists
258 // Attempt to filter it
259 var val = jQuery.filter(t,r);
261 t = jQuery.trim(val.t);
265 // An error occurred with the selector;
266 // just return an empty set instead
270 // Remove the root context
271 if ( ret && context == ret[0] )
274 // And combine the results
275 done = jQuery.merge( done, ret );
280 classFilter: function(r,m,not){
283 for ( var i = 0; r[i]; i++ ) {
284 var pass = (" " + r[i].className + " ").indexOf( m ) >= 0;
285 if ( !not && pass || not && !pass )
291 filter: function(t,r,not) {
294 // Look for common filter expressions
295 while ( t && t != last ) {
298 var p = jQuery.parse, m;
300 for ( var i = 0; p[i]; i++ ) {
304 // Remove what we just matched
305 t = t.substring( m[0].length );
307 m[2] = m[2].replace(/\\/g, "");
315 // :not() is a special case that can be optimized by
316 // keeping it out of the expression list
317 if ( m[1] == ":" && m[2] == "not" )
318 r = jQuery.filter(m[3], r, true).r;
320 // We can get a big speed boost by filtering by class here
321 else if ( m[1] == "." )
322 r = jQuery.classFilter(r, m[2], not);
324 else if ( m[1] == "[" ) {
325 var tmp = [], type = m[3];
327 for ( var i = 0, rl = r.length; i < rl; i++ ) {
328 var a = r[i], z = a[ jQuery.props[m[2]] || m[2] ];
330 if ( z == null || /href|src|selected/.test(m[2]) )
331 z = jQuery.attr(a,m[2]) || '';
333 if ( (type == "" && !!z ||
334 type == "=" && z == m[5] ||
335 type == "!=" && z != m[5] ||
336 type == "^=" && z && !z.indexOf(m[5]) ||
337 type == "$=" && z.substr(z.length - m[5].length) == m[5] ||
338 (type == "*=" || type == "~=") && z.indexOf(m[5]) >= 0) ^ not )
344 // We can get a speed boost by handling nth-child here
345 } else if ( m[1] == ":" && m[2] == "nth-child" ) {
346 var num = jQuery.mergeNum++, tmp = [],
347 test = /(\d*)n\+?(\d*)/.exec(
348 m[3] == "even" && "2n" || m[3] == "odd" && "2n+1" ||
349 !/\D/.test(m[3]) && "n+" + m[3] || m[3]),
350 first = (test[1] || 1) - 0, last = test[2] - 0;
352 for ( var i = 0, rl = r.length; i < rl; i++ ) {
353 var node = r[i], parentNode = node.parentNode;
355 if ( num != parentNode.mergeNum ) {
358 for ( var n = parentNode.firstChild; n; n = n.nextSibling )
359 if ( n.nodeType == 1 )
362 parentNode.mergeNum = num;
368 if ( last == 0 || node.nodeIndex == last )
370 } else if ( (node.nodeIndex + last) % first == 0 )
379 // Otherwise, find the expression to execute
381 var f = jQuery.expr[m[1]];
382 if ( typeof f != "string" )
383 f = jQuery.expr[m[1]][m[2]];
385 // Build a custom macro to enclose it
386 f = eval("false||function(a,i){return " + f + "}");
388 // Execute it against the current filter
389 r = jQuery.grep( r, f, not );
393 // Return an array of filtered elements (r)
394 // and the modified expression string (t)
395 return { r: r, t: t };
398 parents: function( elem ){
400 var cur = elem.parentNode;
401 while ( cur && cur != document ) {
403 cur = cur.parentNode;
408 nth: function(cur,result,dir,elem){
409 result = result || 1;
412 for ( ; cur; cur = cur[dir] )
413 if ( cur.nodeType == 1 && ++num == result )
419 sibling: function( n, elem ) {
422 for ( ; n; n = n.nextSibling ) {
423 if ( n.nodeType == 1 && (!elem || n != elem) )