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)",
65 animated: "jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length"
69 // The regular expressions that power the parsing engine
71 // Match: [@value='test'], [@foo]
72 /^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,
74 // Match: :contains('foo')
75 /^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,
77 // Match: :even, :last-chlid, #id, .class
78 new RegExp("^([:.#]*)(" + chars + "+)")
81 multiFilter: function( expr, elems, not ) {
84 while ( expr && expr != old ) {
86 var f = jQuery.filter( expr, elems, not );
87 expr = f.t.replace(/^\s*,\s*/, "" );
88 cur = not ? elems = f.r : jQuery.merge( cur, f.r );
94 find: function( t, context ) {
95 // Quickly handle non-string expressions
96 if ( typeof t != "string" )
99 // Make sure that the context is a DOM Element
100 if ( context && !context.nodeType )
103 // Set the correct context (if none is provided)
104 context = context || document;
106 // Initialize the search
107 var ret = [context], done = [], last;
109 // Continue while a selector expression exists, and while
110 // we're no longer looping upon ourselves
111 while ( t && last != t ) {
117 var foundToken = false;
119 // An attempt at speeding up child selectors that
120 // point to a specific element tag
125 var nodeName = m[1].toUpperCase();
127 // Perform our own iteration and filter
128 for ( var i = 0; ret[i]; i++ )
129 for ( var c = ret[i].firstChild; c; c = c.nextSibling )
130 if ( c.nodeType == 1 && (nodeName == "*" || c.nodeName.toUpperCase() == nodeName.toUpperCase()) )
134 t = t.replace( re, "" );
135 if ( t.indexOf(" ") == 0 ) continue;
138 re = /^([>+~])\s*(\w*)/i;
140 if ( (m = re.exec(t)) != null ) {
143 var nodeName = m[2], mergeNum = jQuery.mergeNum++;
146 for ( var j = 0, rl = ret.length; j < rl; j++ ) {
147 var n = m == "~" || m == "+" ? ret[j].nextSibling : ret[j].firstChild;
148 for ( ; n; n = n.nextSibling )
149 if ( n.nodeType == 1 ) {
150 if ( m == "~" && n.mergeNum == mergeNum ) break;
152 if (!nodeName || n.nodeName.toUpperCase() == nodeName.toUpperCase() ) {
153 if ( m == "~" ) n.mergeNum = mergeNum;
157 if ( m == "+" ) break;
163 // And remove the token
164 t = jQuery.trim( t.replace( re, "" ) );
169 // See if there's still an expression, and that we haven't already
171 if ( t && !foundToken ) {
172 // Handle multiple expressions
173 if ( !t.indexOf(",") ) {
174 // Clean the result set
175 if ( context == ret[0] ) ret.shift();
177 // Merge the result sets
178 done = jQuery.merge( done, ret );
183 // Touch up the selector string
184 t = " " + t.substr(1,t.length);
187 // Optimize for the case nodeName#idName
191 // Re-organize the results, so that they're consistent
193 m = [ 0, m[2], m[3], m[1] ];
196 // Otherwise, do a traditional filter check for
197 // ID, class, and element selectors
202 m[2] = m[2].replace(/\\/g, "");
204 var elem = ret[ret.length-1];
206 // Try to do a global search by ID, where we can
207 if ( m[1] == "#" && elem && elem.getElementById && !jQuery.isXMLDoc(elem) ) {
208 // Optimization for HTML document case
209 var oid = elem.getElementById(m[2]);
211 // Do a quick check for the existence of the actual ID attribute
212 // to avoid selecting by the name attribute in IE
213 // also check to insure id is a string to avoid selecting an element with the name of 'id' inside a form
214 if ( (jQuery.browser.msie||jQuery.browser.opera) && oid && typeof oid.id == "string" && oid.id != m[2] )
215 oid = jQuery('[@id="'+m[2]+'"]', elem)[0];
217 // Do a quick check for node name (where applicable) so
218 // that div#foo searches will be really fast
219 ret = r = oid && (!m[3] || jQuery.nodeName(oid, m[3])) ? [oid] : [];
221 // We need to find all descendant elements
222 for ( var i = 0; ret[i]; i++ ) {
223 // Grab the tag name being searched for
224 var tag = m[1] == "#" && m[3] ? m[3] : m[1] != "" || m[0] == "" ? "*" : m[2];
226 // Handle IE7 being really dumb about <object>s
227 if ( tag == "*" && ret[i].nodeName.toLowerCase() == "object" )
230 r = jQuery.merge( r, ret[i].getElementsByTagName( tag ));
233 // It's faster to filter by class and be done with it
235 r = jQuery.classFilter( r, m[2] );
237 // Same with ID filtering
241 // Try to find the element with the ID
242 for ( var i = 0; r[i]; i++ )
243 if ( r[i].getAttribute("id") == m[2] ) {
254 t = t.replace( re2, "" );
259 // If a selector string still exists
261 // Attempt to filter it
262 var val = jQuery.filter(t,r);
264 t = jQuery.trim(val.t);
268 // An error occurred with the selector;
269 // just return an empty set instead
273 // Remove the root context
274 if ( ret && context == ret[0] )
277 // And combine the results
278 done = jQuery.merge( done, ret );
283 classFilter: function(r,m,not){
286 for ( var i = 0; r[i]; i++ ) {
287 var pass = (" " + r[i].className + " ").indexOf( m ) >= 0;
288 if ( !not && pass || not && !pass )
294 filter: function(t,r,not) {
297 // Look for common filter expressions
298 while ( t && t != last ) {
301 var p = jQuery.parse, m;
303 for ( var i = 0; p[i]; i++ ) {
307 // Remove what we just matched
308 t = t.substring( m[0].length );
310 m[2] = m[2].replace(/\\/g, "");
318 // :not() is a special case that can be optimized by
319 // keeping it out of the expression list
320 if ( m[1] == ":" && m[2] == "not" )
321 r = jQuery.filter(m[3], r, true).r;
323 // We can get a big speed boost by filtering by class here
324 else if ( m[1] == "." )
325 r = jQuery.classFilter(r, m[2], not);
327 else if ( m[1] == "[" ) {
328 var tmp = [], type = m[3];
330 for ( var i = 0, rl = r.length; i < rl; i++ ) {
331 var a = r[i], z = a[ jQuery.props[m[2]] || m[2] ];
333 if ( z == null || /href|src|selected/.test(m[2]) )
334 z = jQuery.attr(a,m[2]) || '';
336 if ( (type == "" && !!z ||
337 type == "=" && z == m[5] ||
338 type == "!=" && z != m[5] ||
339 type == "^=" && z && !z.indexOf(m[5]) ||
340 type == "$=" && z.substr(z.length - m[5].length) == m[5] ||
341 (type == "*=" || type == "~=") && z.indexOf(m[5]) >= 0) ^ not )
347 // We can get a speed boost by handling nth-child here
348 } else if ( m[1] == ":" && m[2] == "nth-child" ) {
349 var num = jQuery.mergeNum++, tmp = [],
350 test = /(\d*)n\+?(\d*)/.exec(
351 m[3] == "even" && "2n" || m[3] == "odd" && "2n+1" ||
352 !/\D/.test(m[3]) && "n+" + m[3] || m[3]),
353 first = (test[1] || 1) - 0, last = test[2] - 0;
355 for ( var i = 0, rl = r.length; i < rl; i++ ) {
356 var node = r[i], parentNode = node.parentNode;
358 if ( num != parentNode.mergeNum ) {
361 for ( var n = parentNode.firstChild; n; n = n.nextSibling )
362 if ( n.nodeType == 1 )
365 parentNode.mergeNum = num;
371 if ( last == 0 || node.nodeIndex == last )
373 } else if ( (node.nodeIndex + last) % first == 0 )
382 // Otherwise, find the expression to execute
384 var f = jQuery.expr[m[1]];
385 if ( typeof f != "string" )
386 f = jQuery.expr[m[1]][m[2]];
388 // Build a custom macro to enclose it
389 f = eval("false||function(a,i){return " + f + "}");
391 // Execute it against the current filter
392 r = jQuery.grep( r, f, not );
396 // Return an array of filtered elements (r)
397 // and the modified expression string (t)
398 return { r: r, t: t };
401 parents: function( elem ){
403 var cur = elem.parentNode;
404 while ( cur && cur != document ) {
406 cur = cur.parentNode;
411 nth: function(cur,result,dir,elem){
412 result = result || 1;
415 for ( ; cur; cur = cur[dir] )
416 if ( cur.nodeType == 1 && ++num == result )
422 sibling: function( n, elem ) {
425 for ( ; n; n = n.nextSibling ) {
426 if ( n.nodeType == 1 && (!elem || n != elem) )