corrade-http-templates – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 /*!
2 * jQuery JavaScript Library v2.1.1
3 * http://jquery.com/
4 *
5 * Includes Sizzle.js
6 * http://sizzlejs.com/
7 *
8 * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
9 * Released under the MIT license
10 * http://jquery.org/license
11 *
12 * Date: 2014-05-01T17:11Z
13 */
14  
15 (function( global, factory ) {
16  
17 if ( typeof module === "object" && typeof module.exports === "object" ) {
18 // For CommonJS and CommonJS-like environments where a proper window is present,
19 // execute the factory and get jQuery
20 // For environments that do not inherently posses a window with a document
21 // (such as Node.js), expose a jQuery-making factory as module.exports
22 // This accentuates the need for the creation of a real window
23 // e.g. var jQuery = require("jquery")(window);
24 // See ticket #14549 for more info
25 module.exports = global.document ?
26 factory( global, true ) :
27 function( w ) {
28 if ( !w.document ) {
29 throw new Error( "jQuery requires a window with a document" );
30 }
31 return factory( w );
32 };
33 } else {
34 factory( global );
35 }
36  
37 // Pass this if window is not defined yet
38 }(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
39  
40 // Can't do this because several apps including ASP.NET trace
41 // the stack via arguments.caller.callee and Firefox dies if
42 // you try to trace through "use strict" call chains. (#13335)
43 // Support: Firefox 18+
44 //
45  
46 var arr = [];
47  
48 var slice = arr.slice;
49  
50 var concat = arr.concat;
51  
52 var push = arr.push;
53  
54 var indexOf = arr.indexOf;
55  
56 var class2type = {};
57  
58 var toString = class2type.toString;
59  
60 var hasOwn = class2type.hasOwnProperty;
61  
62 var support = {};
63  
64  
65  
66 var
67 // Use the correct document accordingly with window argument (sandbox)
68 document = window.document,
69  
70 version = "2.1.1",
71  
72 // Define a local copy of jQuery
73 jQuery = function( selector, context ) {
74 // The jQuery object is actually just the init constructor 'enhanced'
75 // Need init if jQuery is called (just allow error to be thrown if not included)
76 return new jQuery.fn.init( selector, context );
77 },
78  
79 // Support: Android<4.1
80 // Make sure we trim BOM and NBSP
81 rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
82  
83 // Matches dashed string for camelizing
84 rmsPrefix = /^-ms-/,
85 rdashAlpha = /-([\da-z])/gi,
86  
87 // Used by jQuery.camelCase as callback to replace()
88 fcamelCase = function( all, letter ) {
89 return letter.toUpperCase();
90 };
91  
92 jQuery.fn = jQuery.prototype = {
93 // The current version of jQuery being used
94 jquery: version,
95  
96 constructor: jQuery,
97  
98 // Start with an empty selector
99 selector: "",
100  
101 // The default length of a jQuery object is 0
102 length: 0,
103  
104 toArray: function() {
105 return slice.call( this );
106 },
107  
108 // Get the Nth element in the matched element set OR
109 // Get the whole matched element set as a clean array
110 get: function( num ) {
111 return num != null ?
112  
113 // Return just the one element from the set
114 ( num < 0 ? this[ num + this.length ] : this[ num ] ) :
115  
116 // Return all the elements in a clean array
117 slice.call( this );
118 },
119  
120 // Take an array of elements and push it onto the stack
121 // (returning the new matched element set)
122 pushStack: function( elems ) {
123  
124 // Build a new jQuery matched element set
125 var ret = jQuery.merge( this.constructor(), elems );
126  
127 // Add the old object onto the stack (as a reference)
128 ret.prevObject = this;
129 ret.context = this.context;
130  
131 // Return the newly-formed element set
132 return ret;
133 },
134  
135 // Execute a callback for every element in the matched set.
136 // (You can seed the arguments with an array of args, but this is
137 // only used internally.)
138 each: function( callback, args ) {
139 return jQuery.each( this, callback, args );
140 },
141  
142 map: function( callback ) {
143 return this.pushStack( jQuery.map(this, function( elem, i ) {
144 return callback.call( elem, i, elem );
145 }));
146 },
147  
148 slice: function() {
149 return this.pushStack( slice.apply( this, arguments ) );
150 },
151  
152 first: function() {
153 return this.eq( 0 );
154 },
155  
156 last: function() {
157 return this.eq( -1 );
158 },
159  
160 eq: function( i ) {
161 var len = this.length,
162 j = +i + ( i < 0 ? len : 0 );
163 return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
164 },
165  
166 end: function() {
167 return this.prevObject || this.constructor(null);
168 },
169  
170 // For internal use only.
171 // Behaves like an Array's method, not like a jQuery method.
172 push: push,
173 sort: arr.sort,
174 splice: arr.splice
175 };
176  
177 jQuery.extend = jQuery.fn.extend = function() {
178 var options, name, src, copy, copyIsArray, clone,
179 target = arguments[0] || {},
180 i = 1,
181 length = arguments.length,
182 deep = false;
183  
184 // Handle a deep copy situation
185 if ( typeof target === "boolean" ) {
186 deep = target;
187  
188 // skip the boolean and the target
189 target = arguments[ i ] || {};
190 i++;
191 }
192  
193 // Handle case when target is a string or something (possible in deep copy)
194 if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
195 target = {};
196 }
197  
198 // extend jQuery itself if only one argument is passed
199 if ( i === length ) {
200 target = this;
201 i--;
202 }
203  
204 for ( ; i < length; i++ ) {
205 // Only deal with non-null/undefined values
206 if ( (options = arguments[ i ]) != null ) {
207 // Extend the base object
208 for ( name in options ) {
209 src = target[ name ];
210 copy = options[ name ];
211  
212 // Prevent never-ending loop
213 if ( target === copy ) {
214 continue;
215 }
216  
217 // Recurse if we're merging plain objects or arrays
218 if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
219 if ( copyIsArray ) {
220 copyIsArray = false;
221 clone = src && jQuery.isArray(src) ? src : [];
222  
223 } else {
224 clone = src && jQuery.isPlainObject(src) ? src : {};
225 }
226  
227 // Never move original objects, clone them
228 target[ name ] = jQuery.extend( deep, clone, copy );
229  
230 // Don't bring in undefined values
231 } else if ( copy !== undefined ) {
232 target[ name ] = copy;
233 }
234 }
235 }
236 }
237  
238 // Return the modified object
239 return target;
240 };
241  
242 jQuery.extend({
243 // Unique for each copy of jQuery on the page
244 expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
245  
246 // Assume jQuery is ready without the ready module
247 isReady: true,
248  
249 error: function( msg ) {
250 throw new Error( msg );
251 },
252  
253 noop: function() {},
254  
255 // See test/unit/core.js for details concerning isFunction.
256 // Since version 1.3, DOM methods and functions like alert
257 // aren't supported. They return false on IE (#2968).
258 isFunction: function( obj ) {
259 return jQuery.type(obj) === "function";
260 },
261  
262 isArray: Array.isArray,
263  
264 isWindow: function( obj ) {
265 return obj != null && obj === obj.window;
266 },
267  
268 isNumeric: function( obj ) {
269 // parseFloat NaNs numeric-cast false positives (null|true|false|"")
270 // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
271 // subtraction forces infinities to NaN
272 return !jQuery.isArray( obj ) && obj - parseFloat( obj ) >= 0;
273 },
274  
275 isPlainObject: function( obj ) {
276 // Not plain objects:
277 // - Any object or value whose internal [[Class]] property is not "[object Object]"
278 // - DOM nodes
279 // - window
280 if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
281 return false;
282 }
283  
284 if ( obj.constructor &&
285 !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
286 return false;
287 }
288  
289 // If the function hasn't returned already, we're confident that
290 // |obj| is a plain object, created by {} or constructed with new Object
291 return true;
292 },
293  
294 isEmptyObject: function( obj ) {
295 var name;
296 for ( name in obj ) {
297 return false;
298 }
299 return true;
300 },
301  
302 type: function( obj ) {
303 if ( obj == null ) {
304 return obj + "";
305 }
306 // Support: Android < 4.0, iOS < 6 (functionish RegExp)
307 return typeof obj === "object" || typeof obj === "function" ?
308 class2type[ toString.call(obj) ] || "object" :
309 typeof obj;
310 },
311  
312 // Evaluates a script in a global context
313 globalEval: function( code ) {
314 var script,
315 indirect = eval;
316  
317 code = jQuery.trim( code );
318  
319 if ( code ) {
320 // If the code includes a valid, prologue position
321 // strict mode pragma, execute code by injecting a
322 // script tag into the document.
323 if ( code.indexOf("use strict") === 1 ) {
324 script = document.createElement("script");
325 script.text = code;
326 document.head.appendChild( script ).parentNode.removeChild( script );
327 } else {
328 // Otherwise, avoid the DOM node creation, insertion
329 // and removal by using an indirect global eval
330 indirect( code );
331 }
332 }
333 },
334  
335 // Convert dashed to camelCase; used by the css and data modules
336 // Microsoft forgot to hump their vendor prefix (#9572)
337 camelCase: function( string ) {
338 return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
339 },
340  
341 nodeName: function( elem, name ) {
342 return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
343 },
344  
345 // args is for internal usage only
346 each: function( obj, callback, args ) {
347 var value,
348 i = 0,
349 length = obj.length,
350 isArray = isArraylike( obj );
351  
352 if ( args ) {
353 if ( isArray ) {
354 for ( ; i < length; i++ ) {
355 value = callback.apply( obj[ i ], args );
356  
357 if ( value === false ) {
358 break;
359 }
360 }
361 } else {
362 for ( i in obj ) {
363 value = callback.apply( obj[ i ], args );
364  
365 if ( value === false ) {
366 break;
367 }
368 }
369 }
370  
371 // A special, fast, case for the most common use of each
372 } else {
373 if ( isArray ) {
374 for ( ; i < length; i++ ) {
375 value = callback.call( obj[ i ], i, obj[ i ] );
376  
377 if ( value === false ) {
378 break;
379 }
380 }
381 } else {
382 for ( i in obj ) {
383 value = callback.call( obj[ i ], i, obj[ i ] );
384  
385 if ( value === false ) {
386 break;
387 }
388 }
389 }
390 }
391  
392 return obj;
393 },
394  
395 // Support: Android<4.1
396 trim: function( text ) {
397 return text == null ?
398 "" :
399 ( text + "" ).replace( rtrim, "" );
400 },
401  
402 // results is for internal usage only
403 makeArray: function( arr, results ) {
404 var ret = results || [];
405  
406 if ( arr != null ) {
407 if ( isArraylike( Object(arr) ) ) {
408 jQuery.merge( ret,
409 typeof arr === "string" ?
410 [ arr ] : arr
411 );
412 } else {
413 push.call( ret, arr );
414 }
415 }
416  
417 return ret;
418 },
419  
420 inArray: function( elem, arr, i ) {
421 return arr == null ? -1 : indexOf.call( arr, elem, i );
422 },
423  
424 merge: function( first, second ) {
425 var len = +second.length,
426 j = 0,
427 i = first.length;
428  
429 for ( ; j < len; j++ ) {
430 first[ i++ ] = second[ j ];
431 }
432  
433 first.length = i;
434  
435 return first;
436 },
437  
438 grep: function( elems, callback, invert ) {
439 var callbackInverse,
440 matches = [],
441 i = 0,
442 length = elems.length,
443 callbackExpect = !invert;
444  
445 // Go through the array, only saving the items
446 // that pass the validator function
447 for ( ; i < length; i++ ) {
448 callbackInverse = !callback( elems[ i ], i );
449 if ( callbackInverse !== callbackExpect ) {
450 matches.push( elems[ i ] );
451 }
452 }
453  
454 return matches;
455 },
456  
457 // arg is for internal usage only
458 map: function( elems, callback, arg ) {
459 var value,
460 i = 0,
461 length = elems.length,
462 isArray = isArraylike( elems ),
463 ret = [];
464  
465 // Go through the array, translating each of the items to their new values
466 if ( isArray ) {
467 for ( ; i < length; i++ ) {
468 value = callback( elems[ i ], i, arg );
469  
470 if ( value != null ) {
471 ret.push( value );
472 }
473 }
474  
475 // Go through every key on the object,
476 } else {
477 for ( i in elems ) {
478 value = callback( elems[ i ], i, arg );
479  
480 if ( value != null ) {
481 ret.push( value );
482 }
483 }
484 }
485  
486 // Flatten any nested arrays
487 return concat.apply( [], ret );
488 },
489  
490 // A global GUID counter for objects
491 guid: 1,
492  
493 // Bind a function to a context, optionally partially applying any
494 // arguments.
495 proxy: function( fn, context ) {
496 var tmp, args, proxy;
497  
498 if ( typeof context === "string" ) {
499 tmp = fn[ context ];
500 context = fn;
501 fn = tmp;
502 }
503  
504 // Quick check to determine if target is callable, in the spec
505 // this throws a TypeError, but we will just return undefined.
506 if ( !jQuery.isFunction( fn ) ) {
507 return undefined;
508 }
509  
510 // Simulated bind
511 args = slice.call( arguments, 2 );
512 proxy = function() {
513 return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
514 };
515  
516 // Set the guid of unique handler to the same of original handler, so it can be removed
517 proxy.guid = fn.guid = fn.guid || jQuery.guid++;
518  
519 return proxy;
520 },
521  
522 now: Date.now,
523  
524 // jQuery.support is not used in Core but other projects attach their
525 // properties to it so it needs to exist.
526 support: support
527 });
528  
529 // Populate the class2type map
530 jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
531 class2type[ "[object " + name + "]" ] = name.toLowerCase();
532 });
533  
534 function isArraylike( obj ) {
535 var length = obj.length,
536 type = jQuery.type( obj );
537  
538 if ( type === "function" || jQuery.isWindow( obj ) ) {
539 return false;
540 }
541  
542 if ( obj.nodeType === 1 && length ) {
543 return true;
544 }
545  
546 return type === "array" || length === 0 ||
547 typeof length === "number" && length > 0 && ( length - 1 ) in obj;
548 }
549 var Sizzle =
550 /*!
551 * Sizzle CSS Selector Engine v1.10.19
552 * http://sizzlejs.com/
553 *
554 * Copyright 2013 jQuery Foundation, Inc. and other contributors
555 * Released under the MIT license
556 * http://jquery.org/license
557 *
558 * Date: 2014-04-18
559 */
560 (function( window ) {
561  
562 var i,
563 support,
564 Expr,
565 getText,
566 isXML,
567 tokenize,
568 compile,
569 select,
570 outermostContext,
571 sortInput,
572 hasDuplicate,
573  
574 // Local document vars
575 setDocument,
576 document,
577 docElem,
578 documentIsHTML,
579 rbuggyQSA,
580 rbuggyMatches,
581 matches,
582 contains,
583  
584 // Instance-specific data
585 expando = "sizzle" + -(new Date()),
586 preferredDoc = window.document,
587 dirruns = 0,
588 done = 0,
589 classCache = createCache(),
590 tokenCache = createCache(),
591 compilerCache = createCache(),
592 sortOrder = function( a, b ) {
593 if ( a === b ) {
594 hasDuplicate = true;
595 }
596 return 0;
597 },
598  
599 // General-purpose constants
600 strundefined = typeof undefined,
601 MAX_NEGATIVE = 1 << 31,
602  
603 // Instance methods
604 hasOwn = ({}).hasOwnProperty,
605 arr = [],
606 pop = arr.pop,
607 push_native = arr.push,
608 push = arr.push,
609 slice = arr.slice,
610 // Use a stripped-down indexOf if we can't use a native one
611 indexOf = arr.indexOf || function( elem ) {
612 var i = 0,
613 len = this.length;
614 for ( ; i < len; i++ ) {
615 if ( this[i] === elem ) {
616 return i;
617 }
618 }
619 return -1;
620 },
621  
622 booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
623  
624 // Regular expressions
625  
626 // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
627 whitespace = "[\\x20\\t\\r\\n\\f]",
628 // http://www.w3.org/TR/css3-syntax/#characters
629 characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
630  
631 // Loosely modeled on CSS identifier characters
632 // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
633 // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
634 identifier = characterEncoding.replace( "w", "w#" ),
635  
636 // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
637 attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace +
638 // Operator (capture 2)
639 "*([*^$|!~]?=)" + whitespace +
640 // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
641 "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
642 "*\\]",
643  
644 pseudos = ":(" + characterEncoding + ")(?:\\((" +
645 // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
646 // 1. quoted (capture 3; capture 4 or capture 5)
647 "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
648 // 2. simple (capture 6)
649 "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
650 // 3. anything else (capture 2)
651 ".*" +
652 ")\\)|)",
653  
654 // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
655 rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
656  
657 rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
658 rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
659  
660 rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
661  
662 rpseudo = new RegExp( pseudos ),
663 ridentifier = new RegExp( "^" + identifier + "$" ),
664  
665 matchExpr = {
666 "ID": new RegExp( "^#(" + characterEncoding + ")" ),
667 "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
668 "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
669 "ATTR": new RegExp( "^" + attributes ),
670 "PSEUDO": new RegExp( "^" + pseudos ),
671 "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
672 "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
673 "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
674 "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
675 // For use in libraries implementing .is()
676 // We use this for POS matching in `select`
677 "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
678 whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
679 },
680  
681 rinputs = /^(?:input|select|textarea|button)$/i,
682 rheader = /^h\d$/i,
683  
684 rnative = /^[^{]+\{\s*\[native \w/,
685  
686 // Easily-parseable/retrievable ID or TAG or CLASS selectors
687 rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
688  
689 rsibling = /[+~]/,
690 rescape = /'|\\/g,
691  
692 // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
693 runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
694 funescape = function( _, escaped, escapedWhitespace ) {
695 var high = "0x" + escaped - 0x10000;
696 // NaN means non-codepoint
697 // Support: Firefox<24
698 // Workaround erroneous numeric interpretation of +"0x"
699 return high !== high || escapedWhitespace ?
700 escaped :
701 high < 0 ?
702 // BMP codepoint
703 String.fromCharCode( high + 0x10000 ) :
704 // Supplemental Plane codepoint (surrogate pair)
705 String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
706 };
707  
708 // Optimize for push.apply( _, NodeList )
709 try {
710 push.apply(
711 (arr = slice.call( preferredDoc.childNodes )),
712 preferredDoc.childNodes
713 );
714 // Support: Android<4.0
715 // Detect silently failing push.apply
716 arr[ preferredDoc.childNodes.length ].nodeType;
717 } catch ( e ) {
718 push = { apply: arr.length ?
719  
720 // Leverage slice if possible
721 function( target, els ) {
722 push_native.apply( target, slice.call(els) );
723 } :
724  
725 // Support: IE<9
726 // Otherwise append directly
727 function( target, els ) {
728 var j = target.length,
729 i = 0;
730 // Can't trust NodeList.length
731 while ( (target[j++] = els[i++]) ) {}
732 target.length = j - 1;
733 }
734 };
735 }
736  
737 function Sizzle( selector, context, results, seed ) {
738 var match, elem, m, nodeType,
739 // QSA vars
740 i, groups, old, nid, newContext, newSelector;
741  
742 if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
743 setDocument( context );
744 }
745  
746 context = context || document;
747 results = results || [];
748  
749 if ( !selector || typeof selector !== "string" ) {
750 return results;
751 }
752  
753 if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
754 return [];
755 }
756  
757 if ( documentIsHTML && !seed ) {
758  
759 // Shortcuts
760 if ( (match = rquickExpr.exec( selector )) ) {
761 // Speed-up: Sizzle("#ID")
762 if ( (m = match[1]) ) {
763 if ( nodeType === 9 ) {
764 elem = context.getElementById( m );
765 // Check parentNode to catch when Blackberry 4.6 returns
766 // nodes that are no longer in the document (jQuery #6963)
767 if ( elem && elem.parentNode ) {
768 // Handle the case where IE, Opera, and Webkit return items
769 // by name instead of ID
770 if ( elem.id === m ) {
771 results.push( elem );
772 return results;
773 }
774 } else {
775 return results;
776 }
777 } else {
778 // Context is not a document
779 if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
780 contains( context, elem ) && elem.id === m ) {
781 results.push( elem );
782 return results;
783 }
784 }
785  
786 // Speed-up: Sizzle("TAG")
787 } else if ( match[2] ) {
788 push.apply( results, context.getElementsByTagName( selector ) );
789 return results;
790  
791 // Speed-up: Sizzle(".CLASS")
792 } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
793 push.apply( results, context.getElementsByClassName( m ) );
794 return results;
795 }
796 }
797  
798 // QSA path
799 if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
800 nid = old = expando;
801 newContext = context;
802 newSelector = nodeType === 9 && selector;
803  
804 // qSA works strangely on Element-rooted queries
805 // We can work around this by specifying an extra ID on the root
806 // and working up from there (Thanks to Andrew Dupont for the technique)
807 // IE 8 doesn't work on object elements
808 if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
809 groups = tokenize( selector );
810  
811 if ( (old = context.getAttribute("id")) ) {
812 nid = old.replace( rescape, "\\$&" );
813 } else {
814 context.setAttribute( "id", nid );
815 }
816 nid = "[id='" + nid + "'] ";
817  
818 i = groups.length;
819 while ( i-- ) {
820 groups[i] = nid + toSelector( groups[i] );
821 }
822 newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
823 newSelector = groups.join(",");
824 }
825  
826 if ( newSelector ) {
827 try {
828 push.apply( results,
829 newContext.querySelectorAll( newSelector )
830 );
831 return results;
832 } catch(qsaError) {
833 } finally {
834 if ( !old ) {
835 context.removeAttribute("id");
836 }
837 }
838 }
839 }
840 }
841  
842 // All others
843 return select( selector.replace( rtrim, "$1" ), context, results, seed );
844 }
845  
846 /**
847 * Create key-value caches of limited size
848 * @returns {Function(string, Object)} Returns the Object data after storing it on itself with
849 * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
850 * deleting the oldest entry
851 */
852 function createCache() {
853 var keys = [];
854  
855 function cache( key, value ) {
856 // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
857 if ( keys.push( key + " " ) > Expr.cacheLength ) {
858 // Only keep the most recent entries
859 delete cache[ keys.shift() ];
860 }
861 return (cache[ key + " " ] = value);
862 }
863 return cache;
864 }
865  
866 /**
867 * Mark a function for special use by Sizzle
868 * @param {Function} fn The function to mark
869 */
870 function markFunction( fn ) {
871 fn[ expando ] = true;
872 return fn;
873 }
874  
875 /**
876 * Support testing using an element
877 * @param {Function} fn Passed the created div and expects a boolean result
878 */
879 function assert( fn ) {
880 var div = document.createElement("div");
881  
882 try {
883 return !!fn( div );
884 } catch (e) {
885 return false;
886 } finally {
887 // Remove from its parent by default
888 if ( div.parentNode ) {
889 div.parentNode.removeChild( div );
890 }
891 // release memory in IE
892 div = null;
893 }
894 }
895  
896 /**
897 * Adds the same handler for all of the specified attrs
898 * @param {String} attrs Pipe-separated list of attributes
899 * @param {Function} handler The method that will be applied
900 */
901 function addHandle( attrs, handler ) {
902 var arr = attrs.split("|"),
903 i = attrs.length;
904  
905 while ( i-- ) {
906 Expr.attrHandle[ arr[i] ] = handler;
907 }
908 }
909  
910 /**
911 * Checks document order of two siblings
912 * @param {Element} a
913 * @param {Element} b
914 * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
915 */
916 function siblingCheck( a, b ) {
917 var cur = b && a,
918 diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
919 ( ~b.sourceIndex || MAX_NEGATIVE ) -
920 ( ~a.sourceIndex || MAX_NEGATIVE );
921  
922 // Use IE sourceIndex if available on both nodes
923 if ( diff ) {
924 return diff;
925 }
926  
927 // Check if b follows a
928 if ( cur ) {
929 while ( (cur = cur.nextSibling) ) {
930 if ( cur === b ) {
931 return -1;
932 }
933 }
934 }
935  
936 return a ? 1 : -1;
937 }
938  
939 /**
940 * Returns a function to use in pseudos for input types
941 * @param {String} type
942 */
943 function createInputPseudo( type ) {
944 return function( elem ) {
945 var name = elem.nodeName.toLowerCase();
946 return name === "input" && elem.type === type;
947 };
948 }
949  
950 /**
951 * Returns a function to use in pseudos for buttons
952 * @param {String} type
953 */
954 function createButtonPseudo( type ) {
955 return function( elem ) {
956 var name = elem.nodeName.toLowerCase();
957 return (name === "input" || name === "button") && elem.type === type;
958 };
959 }
960  
961 /**
962 * Returns a function to use in pseudos for positionals
963 * @param {Function} fn
964 */
965 function createPositionalPseudo( fn ) {
966 return markFunction(function( argument ) {
967 argument = +argument;
968 return markFunction(function( seed, matches ) {
969 var j,
970 matchIndexes = fn( [], seed.length, argument ),
971 i = matchIndexes.length;
972  
973 // Match elements found at the specified indexes
974 while ( i-- ) {
975 if ( seed[ (j = matchIndexes[i]) ] ) {
976 seed[j] = !(matches[j] = seed[j]);
977 }
978 }
979 });
980 });
981 }
982  
983 /**
984 * Checks a node for validity as a Sizzle context
985 * @param {Element|Object=} context
986 * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
987 */
988 function testContext( context ) {
989 return context && typeof context.getElementsByTagName !== strundefined && context;
990 }
991  
992 // Expose support vars for convenience
993 support = Sizzle.support = {};
994  
995 /**
996 * Detects XML nodes
997 * @param {Element|Object} elem An element or a document
998 * @returns {Boolean} True iff elem is a non-HTML XML node
999 */
1000 isXML = Sizzle.isXML = function( elem ) {
1001 // documentElement is verified for cases where it doesn't yet exist
1002 // (such as loading iframes in IE - #4833)
1003 var documentElement = elem && (elem.ownerDocument || elem).documentElement;
1004 return documentElement ? documentElement.nodeName !== "HTML" : false;
1005 };
1006  
1007 /**
1008 * Sets document-related variables once based on the current document
1009 * @param {Element|Object} [doc] An element or document object to use to set the document
1010 * @returns {Object} Returns the current document
1011 */
1012 setDocument = Sizzle.setDocument = function( node ) {
1013 var hasCompare,
1014 doc = node ? node.ownerDocument || node : preferredDoc,
1015 parent = doc.defaultView;
1016  
1017 // If no document and documentElement is available, return
1018 if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
1019 return document;
1020 }
1021  
1022 // Set our document
1023 document = doc;
1024 docElem = doc.documentElement;
1025  
1026 // Support tests
1027 documentIsHTML = !isXML( doc );
1028  
1029 // Support: IE>8
1030 // If iframe document is assigned to "document" variable and if iframe has been reloaded,
1031 // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
1032 // IE6-8 do not support the defaultView property so parent will be undefined
1033 if ( parent && parent !== parent.top ) {
1034 // IE11 does not have attachEvent, so all must suffer
1035 if ( parent.addEventListener ) {
1036 parent.addEventListener( "unload", function() {
1037 setDocument();
1038 }, false );
1039 } else if ( parent.attachEvent ) {
1040 parent.attachEvent( "onunload", function() {
1041 setDocument();
1042 });
1043 }
1044 }
1045  
1046 /* Attributes
1047 ---------------------------------------------------------------------- */
1048  
1049 // Support: IE<8
1050 // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans)
1051 support.attributes = assert(function( div ) {
1052 div.className = "i";
1053 return !div.getAttribute("className");
1054 });
1055  
1056 /* getElement(s)By*
1057 ---------------------------------------------------------------------- */
1058  
1059 // Check if getElementsByTagName("*") returns only elements
1060 support.getElementsByTagName = assert(function( div ) {
1061 div.appendChild( doc.createComment("") );
1062 return !div.getElementsByTagName("*").length;
1063 });
1064  
1065 // Check if getElementsByClassName can be trusted
1066 support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) {
1067 div.innerHTML = "<div class='a'></div><div class='a i'></div>";
1068  
1069 // Support: Safari<4
1070 // Catch class over-caching
1071 div.firstChild.className = "i";
1072 // Support: Opera<10
1073 // Catch gEBCN failure to find non-leading classes
1074 return div.getElementsByClassName("i").length === 2;
1075 });
1076  
1077 // Support: IE<10
1078 // Check if getElementById returns elements by name
1079 // The broken getElementById methods don't pick up programatically-set names,
1080 // so use a roundabout getElementsByName test
1081 support.getById = assert(function( div ) {
1082 docElem.appendChild( div ).id = expando;
1083 return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
1084 });
1085  
1086 // ID find and filter
1087 if ( support.getById ) {
1088 Expr.find["ID"] = function( id, context ) {
1089 if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
1090 var m = context.getElementById( id );
1091 // Check parentNode to catch when Blackberry 4.6 returns
1092 // nodes that are no longer in the document #6963
1093 return m && m.parentNode ? [ m ] : [];
1094 }
1095 };
1096 Expr.filter["ID"] = function( id ) {
1097 var attrId = id.replace( runescape, funescape );
1098 return function( elem ) {
1099 return elem.getAttribute("id") === attrId;
1100 };
1101 };
1102 } else {
1103 // Support: IE6/7
1104 // getElementById is not reliable as a find shortcut
1105 delete Expr.find["ID"];
1106  
1107 Expr.filter["ID"] = function( id ) {
1108 var attrId = id.replace( runescape, funescape );
1109 return function( elem ) {
1110 var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
1111 return node && node.value === attrId;
1112 };
1113 };
1114 }
1115  
1116 // Tag
1117 Expr.find["TAG"] = support.getElementsByTagName ?
1118 function( tag, context ) {
1119 if ( typeof context.getElementsByTagName !== strundefined ) {
1120 return context.getElementsByTagName( tag );
1121 }
1122 } :
1123 function( tag, context ) {
1124 var elem,
1125 tmp = [],
1126 i = 0,
1127 results = context.getElementsByTagName( tag );
1128  
1129 // Filter out possible comments
1130 if ( tag === "*" ) {
1131 while ( (elem = results[i++]) ) {
1132 if ( elem.nodeType === 1 ) {
1133 tmp.push( elem );
1134 }
1135 }
1136  
1137 return tmp;
1138 }
1139 return results;
1140 };
1141  
1142 // Class
1143 Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
1144 if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
1145 return context.getElementsByClassName( className );
1146 }
1147 };
1148  
1149 /* QSA/matchesSelector
1150 ---------------------------------------------------------------------- */
1151  
1152 // QSA and matchesSelector support
1153  
1154 // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
1155 rbuggyMatches = [];
1156  
1157 // qSa(:focus) reports false when true (Chrome 21)
1158 // We allow this because of a bug in IE8/9 that throws an error
1159 // whenever `document.activeElement` is accessed on an iframe
1160 // So, we allow :focus to pass through QSA all the time to avoid the IE error
1161 // See http://bugs.jquery.com/ticket/13378
1162 rbuggyQSA = [];
1163  
1164 if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
1165 // Build QSA regex
1166 // Regex strategy adopted from Diego Perini
1167 assert(function( div ) {
1168 // Select is set to empty string on purpose
1169 // This is to test IE's treatment of not explicitly
1170 // setting a boolean content attribute,
1171 // since its presence should be enough
1172 // http://bugs.jquery.com/ticket/12359
1173 div.innerHTML = "<select msallowclip=''><option selected=''></option></select>";
1174  
1175 // Support: IE8, Opera 11-12.16
1176 // Nothing should be selected when empty strings follow ^= or $= or *=
1177 // The test attribute must be unknown in Opera but "safe" for WinRT
1178 // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
1179 if ( div.querySelectorAll("[msallowclip^='']").length ) {
1180 rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
1181 }
1182  
1183 // Support: IE8
1184 // Boolean attributes and "value" are not treated correctly
1185 if ( !div.querySelectorAll("[selected]").length ) {
1186 rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
1187 }
1188  
1189 // Webkit/Opera - :checked should return selected option elements
1190 // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1191 // IE8 throws error here and will not see later tests
1192 if ( !div.querySelectorAll(":checked").length ) {
1193 rbuggyQSA.push(":checked");
1194 }
1195 });
1196  
1197 assert(function( div ) {
1198 // Support: Windows 8 Native Apps
1199 // The type and name attributes are restricted during .innerHTML assignment
1200 var input = doc.createElement("input");
1201 input.setAttribute( "type", "hidden" );
1202 div.appendChild( input ).setAttribute( "name", "D" );
1203  
1204 // Support: IE8
1205 // Enforce case-sensitivity of name attribute
1206 if ( div.querySelectorAll("[name=d]").length ) {
1207 rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
1208 }
1209  
1210 // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
1211 // IE8 throws error here and will not see later tests
1212 if ( !div.querySelectorAll(":enabled").length ) {
1213 rbuggyQSA.push( ":enabled", ":disabled" );
1214 }
1215  
1216 // Opera 10-11 does not throw on post-comma invalid pseudos
1217 div.querySelectorAll("*,:x");
1218 rbuggyQSA.push(",.*:");
1219 });
1220 }
1221  
1222 if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
1223 docElem.webkitMatchesSelector ||
1224 docElem.mozMatchesSelector ||
1225 docElem.oMatchesSelector ||
1226 docElem.msMatchesSelector) )) ) {
1227  
1228 assert(function( div ) {
1229 // Check to see if it's possible to do matchesSelector
1230 // on a disconnected node (IE 9)
1231 support.disconnectedMatch = matches.call( div, "div" );
1232  
1233 // This should fail with an exception
1234 // Gecko does not error, returns false instead
1235 matches.call( div, "[s!='']:x" );
1236 rbuggyMatches.push( "!=", pseudos );
1237 });
1238 }
1239  
1240 rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
1241 rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
1242  
1243 /* Contains
1244 ---------------------------------------------------------------------- */
1245 hasCompare = rnative.test( docElem.compareDocumentPosition );
1246  
1247 // Element contains another
1248 // Purposefully does not implement inclusive descendent
1249 // As in, an element does not contain itself
1250 contains = hasCompare || rnative.test( docElem.contains ) ?
1251 function( a, b ) {
1252 var adown = a.nodeType === 9 ? a.documentElement : a,
1253 bup = b && b.parentNode;
1254 return a === bup || !!( bup && bup.nodeType === 1 && (
1255 adown.contains ?
1256 adown.contains( bup ) :
1257 a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
1258 ));
1259 } :
1260 function( a, b ) {
1261 if ( b ) {
1262 while ( (b = b.parentNode) ) {
1263 if ( b === a ) {
1264 return true;
1265 }
1266 }
1267 }
1268 return false;
1269 };
1270  
1271 /* Sorting
1272 ---------------------------------------------------------------------- */
1273  
1274 // Document order sorting
1275 sortOrder = hasCompare ?
1276 function( a, b ) {
1277  
1278 // Flag for duplicate removal
1279 if ( a === b ) {
1280 hasDuplicate = true;
1281 return 0;
1282 }
1283  
1284 // Sort on method existence if only one input has compareDocumentPosition
1285 var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
1286 if ( compare ) {
1287 return compare;
1288 }
1289  
1290 // Calculate position if both inputs belong to the same document
1291 compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
1292 a.compareDocumentPosition( b ) :
1293  
1294 // Otherwise we know they are disconnected
1295 1;
1296  
1297 // Disconnected nodes
1298 if ( compare & 1 ||
1299 (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
1300  
1301 // Choose the first element that is related to our preferred document
1302 if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
1303 return -1;
1304 }
1305 if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
1306 return 1;
1307 }
1308  
1309 // Maintain original order
1310 return sortInput ?
1311 ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
1312 0;
1313 }
1314  
1315 return compare & 4 ? -1 : 1;
1316 } :
1317 function( a, b ) {
1318 // Exit early if the nodes are identical
1319 if ( a === b ) {
1320 hasDuplicate = true;
1321 return 0;
1322 }
1323  
1324 var cur,
1325 i = 0,
1326 aup = a.parentNode,
1327 bup = b.parentNode,
1328 ap = [ a ],
1329 bp = [ b ];
1330  
1331 // Parentless nodes are either documents or disconnected
1332 if ( !aup || !bup ) {
1333 return a === doc ? -1 :
1334 b === doc ? 1 :
1335 aup ? -1 :
1336 bup ? 1 :
1337 sortInput ?
1338 ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
1339 0;
1340  
1341 // If the nodes are siblings, we can do a quick check
1342 } else if ( aup === bup ) {
1343 return siblingCheck( a, b );
1344 }
1345  
1346 // Otherwise we need full lists of their ancestors for comparison
1347 cur = a;
1348 while ( (cur = cur.parentNode) ) {
1349 ap.unshift( cur );
1350 }
1351 cur = b;
1352 while ( (cur = cur.parentNode) ) {
1353 bp.unshift( cur );
1354 }
1355  
1356 // Walk down the tree looking for a discrepancy
1357 while ( ap[i] === bp[i] ) {
1358 i++;
1359 }
1360  
1361 return i ?
1362 // Do a sibling check if the nodes have a common ancestor
1363 siblingCheck( ap[i], bp[i] ) :
1364  
1365 // Otherwise nodes in our document sort first
1366 ap[i] === preferredDoc ? -1 :
1367 bp[i] === preferredDoc ? 1 :
1368 0;
1369 };
1370  
1371 return doc;
1372 };
1373  
1374 Sizzle.matches = function( expr, elements ) {
1375 return Sizzle( expr, null, null, elements );
1376 };
1377  
1378 Sizzle.matchesSelector = function( elem, expr ) {
1379 // Set document vars if needed
1380 if ( ( elem.ownerDocument || elem ) !== document ) {
1381 setDocument( elem );
1382 }
1383  
1384 // Make sure that attribute selectors are quoted
1385 expr = expr.replace( rattributeQuotes, "='$1']" );
1386  
1387 if ( support.matchesSelector && documentIsHTML &&
1388 ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
1389 ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
1390  
1391 try {
1392 var ret = matches.call( elem, expr );
1393  
1394 // IE 9's matchesSelector returns false on disconnected nodes
1395 if ( ret || support.disconnectedMatch ||
1396 // As well, disconnected nodes are said to be in a document
1397 // fragment in IE 9
1398 elem.document && elem.document.nodeType !== 11 ) {
1399 return ret;
1400 }
1401 } catch(e) {}
1402 }
1403  
1404 return Sizzle( expr, document, null, [ elem ] ).length > 0;
1405 };
1406  
1407 Sizzle.contains = function( context, elem ) {
1408 // Set document vars if needed
1409 if ( ( context.ownerDocument || context ) !== document ) {
1410 setDocument( context );
1411 }
1412 return contains( context, elem );
1413 };
1414  
1415 Sizzle.attr = function( elem, name ) {
1416 // Set document vars if needed
1417 if ( ( elem.ownerDocument || elem ) !== document ) {
1418 setDocument( elem );
1419 }
1420  
1421 var fn = Expr.attrHandle[ name.toLowerCase() ],
1422 // Don't get fooled by Object.prototype properties (jQuery #13807)
1423 val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
1424 fn( elem, name, !documentIsHTML ) :
1425 undefined;
1426  
1427 return val !== undefined ?
1428 val :
1429 support.attributes || !documentIsHTML ?
1430 elem.getAttribute( name ) :
1431 (val = elem.getAttributeNode(name)) && val.specified ?
1432 val.value :
1433 null;
1434 };
1435  
1436 Sizzle.error = function( msg ) {
1437 throw new Error( "Syntax error, unrecognized expression: " + msg );
1438 };
1439  
1440 /**
1441 * Document sorting and removing duplicates
1442 * @param {ArrayLike} results
1443 */
1444 Sizzle.uniqueSort = function( results ) {
1445 var elem,
1446 duplicates = [],
1447 j = 0,
1448 i = 0;
1449  
1450 // Unless we *know* we can detect duplicates, assume their presence
1451 hasDuplicate = !support.detectDuplicates;
1452 sortInput = !support.sortStable && results.slice( 0 );
1453 results.sort( sortOrder );
1454  
1455 if ( hasDuplicate ) {
1456 while ( (elem = results[i++]) ) {
1457 if ( elem === results[ i ] ) {
1458 j = duplicates.push( i );
1459 }
1460 }
1461 while ( j-- ) {
1462 results.splice( duplicates[ j ], 1 );
1463 }
1464 }
1465  
1466 // Clear input after sorting to release objects
1467 // See https://github.com/jquery/sizzle/pull/225
1468 sortInput = null;
1469  
1470 return results;
1471 };
1472  
1473 /**
1474 * Utility function for retrieving the text value of an array of DOM nodes
1475 * @param {Array|Element} elem
1476 */
1477 getText = Sizzle.getText = function( elem ) {
1478 var node,
1479 ret = "",
1480 i = 0,
1481 nodeType = elem.nodeType;
1482  
1483 if ( !nodeType ) {
1484 // If no nodeType, this is expected to be an array
1485 while ( (node = elem[i++]) ) {
1486 // Do not traverse comment nodes
1487 ret += getText( node );
1488 }
1489 } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
1490 // Use textContent for elements
1491 // innerText usage removed for consistency of new lines (jQuery #11153)
1492 if ( typeof elem.textContent === "string" ) {
1493 return elem.textContent;
1494 } else {
1495 // Traverse its children
1496 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1497 ret += getText( elem );
1498 }
1499 }
1500 } else if ( nodeType === 3 || nodeType === 4 ) {
1501 return elem.nodeValue;
1502 }
1503 // Do not include comment or processing instruction nodes
1504  
1505 return ret;
1506 };
1507  
1508 Expr = Sizzle.selectors = {
1509  
1510 // Can be adjusted by the user
1511 cacheLength: 50,
1512  
1513 createPseudo: markFunction,
1514  
1515 match: matchExpr,
1516  
1517 attrHandle: {},
1518  
1519 find: {},
1520  
1521 relative: {
1522 ">": { dir: "parentNode", first: true },
1523 " ": { dir: "parentNode" },
1524 "+": { dir: "previousSibling", first: true },
1525 "~": { dir: "previousSibling" }
1526 },
1527  
1528 preFilter: {
1529 "ATTR": function( match ) {
1530 match[1] = match[1].replace( runescape, funescape );
1531  
1532 // Move the given value to match[3] whether quoted or unquoted
1533 match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
1534  
1535 if ( match[2] === "~=" ) {
1536 match[3] = " " + match[3] + " ";
1537 }
1538  
1539 return match.slice( 0, 4 );
1540 },
1541  
1542 "CHILD": function( match ) {
1543 /* matches from matchExpr["CHILD"]
1544 1 type (only|nth|...)
1545 2 what (child|of-type)
1546 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
1547 4 xn-component of xn+y argument ([+-]?\d*n|)
1548 5 sign of xn-component
1549 6 x of xn-component
1550 7 sign of y-component
1551 8 y of y-component
1552 */
1553 match[1] = match[1].toLowerCase();
1554  
1555 if ( match[1].slice( 0, 3 ) === "nth" ) {
1556 // nth-* requires argument
1557 if ( !match[3] ) {
1558 Sizzle.error( match[0] );
1559 }
1560  
1561 // numeric x and y parameters for Expr.filter.CHILD
1562 // remember that false/true cast respectively to 0/1
1563 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
1564 match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
1565  
1566 // other types prohibit arguments
1567 } else if ( match[3] ) {
1568 Sizzle.error( match[0] );
1569 }
1570  
1571 return match;
1572 },
1573  
1574 "PSEUDO": function( match ) {
1575 var excess,
1576 unquoted = !match[6] && match[2];
1577  
1578 if ( matchExpr["CHILD"].test( match[0] ) ) {
1579 return null;
1580 }
1581  
1582 // Accept quoted arguments as-is
1583 if ( match[3] ) {
1584 match[2] = match[4] || match[5] || "";
1585  
1586 // Strip excess characters from unquoted arguments
1587 } else if ( unquoted && rpseudo.test( unquoted ) &&
1588 // Get excess from tokenize (recursively)
1589 (excess = tokenize( unquoted, true )) &&
1590 // advance to the next closing parenthesis
1591 (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
1592  
1593 // excess is a negative index
1594 match[0] = match[0].slice( 0, excess );
1595 match[2] = unquoted.slice( 0, excess );
1596 }
1597  
1598 // Return only captures needed by the pseudo filter method (type and argument)
1599 return match.slice( 0, 3 );
1600 }
1601 },
1602  
1603 filter: {
1604  
1605 "TAG": function( nodeNameSelector ) {
1606 var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
1607 return nodeNameSelector === "*" ?
1608 function() { return true; } :
1609 function( elem ) {
1610 return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
1611 };
1612 },
1613  
1614 "CLASS": function( className ) {
1615 var pattern = classCache[ className + " " ];
1616  
1617 return pattern ||
1618 (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
1619 classCache( className, function( elem ) {
1620 return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" );
1621 });
1622 },
1623  
1624 "ATTR": function( name, operator, check ) {
1625 return function( elem ) {
1626 var result = Sizzle.attr( elem, name );
1627  
1628 if ( result == null ) {
1629 return operator === "!=";
1630 }
1631 if ( !operator ) {
1632 return true;
1633 }
1634  
1635 result += "";
1636  
1637 return operator === "=" ? result === check :
1638 operator === "!=" ? result !== check :
1639 operator === "^=" ? check && result.indexOf( check ) === 0 :
1640 operator === "*=" ? check && result.indexOf( check ) > -1 :
1641 operator === "$=" ? check && result.slice( -check.length ) === check :
1642 operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
1643 operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
1644 false;
1645 };
1646 },
1647  
1648 "CHILD": function( type, what, argument, first, last ) {
1649 var simple = type.slice( 0, 3 ) !== "nth",
1650 forward = type.slice( -4 ) !== "last",
1651 ofType = what === "of-type";
1652  
1653 return first === 1 && last === 0 ?
1654  
1655 // Shortcut for :nth-*(n)
1656 function( elem ) {
1657 return !!elem.parentNode;
1658 } :
1659  
1660 function( elem, context, xml ) {
1661 var cache, outerCache, node, diff, nodeIndex, start,
1662 dir = simple !== forward ? "nextSibling" : "previousSibling",
1663 parent = elem.parentNode,
1664 name = ofType && elem.nodeName.toLowerCase(),
1665 useCache = !xml && !ofType;
1666  
1667 if ( parent ) {
1668  
1669 // :(first|last|only)-(child|of-type)
1670 if ( simple ) {
1671 while ( dir ) {
1672 node = elem;
1673 while ( (node = node[ dir ]) ) {
1674 if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
1675 return false;
1676 }
1677 }
1678 // Reverse direction for :only-* (if we haven't yet done so)
1679 start = dir = type === "only" && !start && "nextSibling";
1680 }
1681 return true;
1682 }
1683  
1684 start = [ forward ? parent.firstChild : parent.lastChild ];
1685  
1686 // non-xml :nth-child(...) stores cache data on `parent`
1687 if ( forward && useCache ) {
1688 // Seek `elem` from a previously-cached index
1689 outerCache = parent[ expando ] || (parent[ expando ] = {});
1690 cache = outerCache[ type ] || [];
1691 nodeIndex = cache[0] === dirruns && cache[1];
1692 diff = cache[0] === dirruns && cache[2];
1693 node = nodeIndex && parent.childNodes[ nodeIndex ];
1694  
1695 while ( (node = ++nodeIndex && node && node[ dir ] ||
1696  
1697 // Fallback to seeking `elem` from the start
1698 (diff = nodeIndex = 0) || start.pop()) ) {
1699  
1700 // When found, cache indexes on `parent` and break
1701 if ( node.nodeType === 1 && ++diff && node === elem ) {
1702 outerCache[ type ] = [ dirruns, nodeIndex, diff ];
1703 break;
1704 }
1705 }
1706  
1707 // Use previously-cached element index if available
1708 } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
1709 diff = cache[1];
1710  
1711 // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
1712 } else {
1713 // Use the same loop as above to seek `elem` from the start
1714 while ( (node = ++nodeIndex && node && node[ dir ] ||
1715 (diff = nodeIndex = 0) || start.pop()) ) {
1716  
1717 if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
1718 // Cache the index of each encountered element
1719 if ( useCache ) {
1720 (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
1721 }
1722  
1723 if ( node === elem ) {
1724 break;
1725 }
1726 }
1727 }
1728 }
1729  
1730 // Incorporate the offset, then check against cycle size
1731 diff -= last;
1732 return diff === first || ( diff % first === 0 && diff / first >= 0 );
1733 }
1734 };
1735 },
1736  
1737 "PSEUDO": function( pseudo, argument ) {
1738 // pseudo-class names are case-insensitive
1739 // http://www.w3.org/TR/selectors/#pseudo-classes
1740 // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
1741 // Remember that setFilters inherits from pseudos
1742 var args,
1743 fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
1744 Sizzle.error( "unsupported pseudo: " + pseudo );
1745  
1746 // The user may use createPseudo to indicate that
1747 // arguments are needed to create the filter function
1748 // just as Sizzle does
1749 if ( fn[ expando ] ) {
1750 return fn( argument );
1751 }
1752  
1753 // But maintain support for old signatures
1754 if ( fn.length > 1 ) {
1755 args = [ pseudo, pseudo, "", argument ];
1756 return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
1757 markFunction(function( seed, matches ) {
1758 var idx,
1759 matched = fn( seed, argument ),
1760 i = matched.length;
1761 while ( i-- ) {
1762 idx = indexOf.call( seed, matched[i] );
1763 seed[ idx ] = !( matches[ idx ] = matched[i] );
1764 }
1765 }) :
1766 function( elem ) {
1767 return fn( elem, 0, args );
1768 };
1769 }
1770  
1771 return fn;
1772 }
1773 },
1774  
1775 pseudos: {
1776 // Potentially complex pseudos
1777 "not": markFunction(function( selector ) {
1778 // Trim the selector passed to compile
1779 // to avoid treating leading and trailing
1780 // spaces as combinators
1781 var input = [],
1782 results = [],
1783 matcher = compile( selector.replace( rtrim, "$1" ) );
1784  
1785 return matcher[ expando ] ?
1786 markFunction(function( seed, matches, context, xml ) {
1787 var elem,
1788 unmatched = matcher( seed, null, xml, [] ),
1789 i = seed.length;
1790  
1791 // Match elements unmatched by `matcher`
1792 while ( i-- ) {
1793 if ( (elem = unmatched[i]) ) {
1794 seed[i] = !(matches[i] = elem);
1795 }
1796 }
1797 }) :
1798 function( elem, context, xml ) {
1799 input[0] = elem;
1800 matcher( input, null, xml, results );
1801 return !results.pop();
1802 };
1803 }),
1804  
1805 "has": markFunction(function( selector ) {
1806 return function( elem ) {
1807 return Sizzle( selector, elem ).length > 0;
1808 };
1809 }),
1810  
1811 "contains": markFunction(function( text ) {
1812 return function( elem ) {
1813 return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
1814 };
1815 }),
1816  
1817 // "Whether an element is represented by a :lang() selector
1818 // is based solely on the element's language value
1819 // being equal to the identifier C,
1820 // or beginning with the identifier C immediately followed by "-".
1821 // The matching of C against the element's language value is performed case-insensitively.
1822 // The identifier C does not have to be a valid language name."
1823 // http://www.w3.org/TR/selectors/#lang-pseudo
1824 "lang": markFunction( function( lang ) {
1825 // lang value must be a valid identifier
1826 if ( !ridentifier.test(lang || "") ) {
1827 Sizzle.error( "unsupported lang: " + lang );
1828 }
1829 lang = lang.replace( runescape, funescape ).toLowerCase();
1830 return function( elem ) {
1831 var elemLang;
1832 do {
1833 if ( (elemLang = documentIsHTML ?
1834 elem.lang :
1835 elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
1836  
1837 elemLang = elemLang.toLowerCase();
1838 return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
1839 }
1840 } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
1841 return false;
1842 };
1843 }),
1844  
1845 // Miscellaneous
1846 "target": function( elem ) {
1847 var hash = window.location && window.location.hash;
1848 return hash && hash.slice( 1 ) === elem.id;
1849 },
1850  
1851 "root": function( elem ) {
1852 return elem === docElem;
1853 },
1854  
1855 "focus": function( elem ) {
1856 return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
1857 },
1858  
1859 // Boolean properties
1860 "enabled": function( elem ) {
1861 return elem.disabled === false;
1862 },
1863  
1864 "disabled": function( elem ) {
1865 return elem.disabled === true;
1866 },
1867  
1868 "checked": function( elem ) {
1869 // In CSS3, :checked should return both checked and selected elements
1870 // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1871 var nodeName = elem.nodeName.toLowerCase();
1872 return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
1873 },
1874  
1875 "selected": function( elem ) {
1876 // Accessing this property makes selected-by-default
1877 // options in Safari work properly
1878 if ( elem.parentNode ) {
1879 elem.parentNode.selectedIndex;
1880 }
1881  
1882 return elem.selected === true;
1883 },
1884  
1885 // Contents
1886 "empty": function( elem ) {
1887 // http://www.w3.org/TR/selectors/#empty-pseudo
1888 // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
1889 // but not by others (comment: 8; processing instruction: 7; etc.)
1890 // nodeType < 6 works because attributes (2) do not appear as children
1891 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1892 if ( elem.nodeType < 6 ) {
1893 return false;
1894 }
1895 }
1896 return true;
1897 },
1898  
1899 "parent": function( elem ) {
1900 return !Expr.pseudos["empty"]( elem );
1901 },
1902  
1903 // Element/input types
1904 "header": function( elem ) {
1905 return rheader.test( elem.nodeName );
1906 },
1907  
1908 "input": function( elem ) {
1909 return rinputs.test( elem.nodeName );
1910 },
1911  
1912 "button": function( elem ) {
1913 var name = elem.nodeName.toLowerCase();
1914 return name === "input" && elem.type === "button" || name === "button";
1915 },
1916  
1917 "text": function( elem ) {
1918 var attr;
1919 return elem.nodeName.toLowerCase() === "input" &&
1920 elem.type === "text" &&
1921  
1922 // Support: IE<8
1923 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
1924 ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
1925 },
1926  
1927 // Position-in-collection
1928 "first": createPositionalPseudo(function() {
1929 return [ 0 ];
1930 }),
1931  
1932 "last": createPositionalPseudo(function( matchIndexes, length ) {
1933 return [ length - 1 ];
1934 }),
1935  
1936 "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
1937 return [ argument < 0 ? argument + length : argument ];
1938 }),
1939  
1940 "even": createPositionalPseudo(function( matchIndexes, length ) {
1941 var i = 0;
1942 for ( ; i < length; i += 2 ) {
1943 matchIndexes.push( i );
1944 }
1945 return matchIndexes;
1946 }),
1947  
1948 "odd": createPositionalPseudo(function( matchIndexes, length ) {
1949 var i = 1;
1950 for ( ; i < length; i += 2 ) {
1951 matchIndexes.push( i );
1952 }
1953 return matchIndexes;
1954 }),
1955  
1956 "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
1957 var i = argument < 0 ? argument + length : argument;
1958 for ( ; --i >= 0; ) {
1959 matchIndexes.push( i );
1960 }
1961 return matchIndexes;
1962 }),
1963  
1964 "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
1965 var i = argument < 0 ? argument + length : argument;
1966 for ( ; ++i < length; ) {
1967 matchIndexes.push( i );
1968 }
1969 return matchIndexes;
1970 })
1971 }
1972 };
1973  
1974 Expr.pseudos["nth"] = Expr.pseudos["eq"];
1975  
1976 // Add button/input type pseudos
1977 for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
1978 Expr.pseudos[ i ] = createInputPseudo( i );
1979 }
1980 for ( i in { submit: true, reset: true } ) {
1981 Expr.pseudos[ i ] = createButtonPseudo( i );
1982 }
1983  
1984 // Easy API for creating new setFilters
1985 function setFilters() {}
1986 setFilters.prototype = Expr.filters = Expr.pseudos;
1987 Expr.setFilters = new setFilters();
1988  
1989 tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
1990 var matched, match, tokens, type,
1991 soFar, groups, preFilters,
1992 cached = tokenCache[ selector + " " ];
1993  
1994 if ( cached ) {
1995 return parseOnly ? 0 : cached.slice( 0 );
1996 }
1997  
1998 soFar = selector;
1999 groups = [];
2000 preFilters = Expr.preFilter;
2001  
2002 while ( soFar ) {
2003  
2004 // Comma and first run
2005 if ( !matched || (match = rcomma.exec( soFar )) ) {
2006 if ( match ) {
2007 // Don't consume trailing commas as valid
2008 soFar = soFar.slice( match[0].length ) || soFar;
2009 }
2010 groups.push( (tokens = []) );
2011 }
2012  
2013 matched = false;
2014  
2015 // Combinators
2016 if ( (match = rcombinators.exec( soFar )) ) {
2017 matched = match.shift();
2018 tokens.push({
2019 value: matched,
2020 // Cast descendant combinators to space
2021 type: match[0].replace( rtrim, " " )
2022 });
2023 soFar = soFar.slice( matched.length );
2024 }
2025  
2026 // Filters
2027 for ( type in Expr.filter ) {
2028 if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
2029 (match = preFilters[ type ]( match ))) ) {
2030 matched = match.shift();
2031 tokens.push({
2032 value: matched,
2033 type: type,
2034 matches: match
2035 });
2036 soFar = soFar.slice( matched.length );
2037 }
2038 }
2039  
2040 if ( !matched ) {
2041 break;
2042 }
2043 }
2044  
2045 // Return the length of the invalid excess
2046 // if we're just parsing
2047 // Otherwise, throw an error or return tokens
2048 return parseOnly ?
2049 soFar.length :
2050 soFar ?
2051 Sizzle.error( selector ) :
2052 // Cache the tokens
2053 tokenCache( selector, groups ).slice( 0 );
2054 };
2055  
2056 function toSelector( tokens ) {
2057 var i = 0,
2058 len = tokens.length,
2059 selector = "";
2060 for ( ; i < len; i++ ) {
2061 selector += tokens[i].value;
2062 }
2063 return selector;
2064 }
2065  
2066 function addCombinator( matcher, combinator, base ) {
2067 var dir = combinator.dir,
2068 checkNonElements = base && dir === "parentNode",
2069 doneName = done++;
2070  
2071 return combinator.first ?
2072 // Check against closest ancestor/preceding element
2073 function( elem, context, xml ) {
2074 while ( (elem = elem[ dir ]) ) {
2075 if ( elem.nodeType === 1 || checkNonElements ) {
2076 return matcher( elem, context, xml );
2077 }
2078 }
2079 } :
2080  
2081 // Check against all ancestor/preceding elements
2082 function( elem, context, xml ) {
2083 var oldCache, outerCache,
2084 newCache = [ dirruns, doneName ];
2085  
2086 // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
2087 if ( xml ) {
2088 while ( (elem = elem[ dir ]) ) {
2089 if ( elem.nodeType === 1 || checkNonElements ) {
2090 if ( matcher( elem, context, xml ) ) {
2091 return true;
2092 }
2093 }
2094 }
2095 } else {
2096 while ( (elem = elem[ dir ]) ) {
2097 if ( elem.nodeType === 1 || checkNonElements ) {
2098 outerCache = elem[ expando ] || (elem[ expando ] = {});
2099 if ( (oldCache = outerCache[ dir ]) &&
2100 oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
2101  
2102 // Assign to newCache so results back-propagate to previous elements
2103 return (newCache[ 2 ] = oldCache[ 2 ]);
2104 } else {
2105 // Reuse newcache so results back-propagate to previous elements
2106 outerCache[ dir ] = newCache;
2107  
2108 // A match means we're done; a fail means we have to keep checking
2109 if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
2110 return true;
2111 }
2112 }
2113 }
2114 }
2115 }
2116 };
2117 }
2118  
2119 function elementMatcher( matchers ) {
2120 return matchers.length > 1 ?
2121 function( elem, context, xml ) {
2122 var i = matchers.length;
2123 while ( i-- ) {
2124 if ( !matchers[i]( elem, context, xml ) ) {
2125 return false;
2126 }
2127 }
2128 return true;
2129 } :
2130 matchers[0];
2131 }
2132  
2133 function multipleContexts( selector, contexts, results ) {
2134 var i = 0,
2135 len = contexts.length;
2136 for ( ; i < len; i++ ) {
2137 Sizzle( selector, contexts[i], results );
2138 }
2139 return results;
2140 }
2141  
2142 function condense( unmatched, map, filter, context, xml ) {
2143 var elem,
2144 newUnmatched = [],
2145 i = 0,
2146 len = unmatched.length,
2147 mapped = map != null;
2148  
2149 for ( ; i < len; i++ ) {
2150 if ( (elem = unmatched[i]) ) {
2151 if ( !filter || filter( elem, context, xml ) ) {
2152 newUnmatched.push( elem );
2153 if ( mapped ) {
2154 map.push( i );
2155 }
2156 }
2157 }
2158 }
2159  
2160 return newUnmatched;
2161 }
2162  
2163 function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
2164 if ( postFilter && !postFilter[ expando ] ) {
2165 postFilter = setMatcher( postFilter );
2166 }
2167 if ( postFinder && !postFinder[ expando ] ) {
2168 postFinder = setMatcher( postFinder, postSelector );
2169 }
2170 return markFunction(function( seed, results, context, xml ) {
2171 var temp, i, elem,
2172 preMap = [],
2173 postMap = [],
2174 preexisting = results.length,
2175  
2176 // Get initial elements from seed or context
2177 elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
2178  
2179 // Prefilter to get matcher input, preserving a map for seed-results synchronization
2180 matcherIn = preFilter && ( seed || !selector ) ?
2181 condense( elems, preMap, preFilter, context, xml ) :
2182 elems,
2183  
2184 matcherOut = matcher ?
2185 // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
2186 postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
2187  
2188 // ...intermediate processing is necessary
2189 [] :
2190  
2191 // ...otherwise use results directly
2192 results :
2193 matcherIn;
2194  
2195 // Find primary matches
2196 if ( matcher ) {
2197 matcher( matcherIn, matcherOut, context, xml );
2198 }
2199  
2200 // Apply postFilter
2201 if ( postFilter ) {
2202 temp = condense( matcherOut, postMap );
2203 postFilter( temp, [], context, xml );
2204  
2205 // Un-match failing elements by moving them back to matcherIn
2206 i = temp.length;
2207 while ( i-- ) {
2208 if ( (elem = temp[i]) ) {
2209 matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
2210 }
2211 }
2212 }
2213  
2214 if ( seed ) {
2215 if ( postFinder || preFilter ) {
2216 if ( postFinder ) {
2217 // Get the final matcherOut by condensing this intermediate into postFinder contexts
2218 temp = [];
2219 i = matcherOut.length;
2220 while ( i-- ) {
2221 if ( (elem = matcherOut[i]) ) {
2222 // Restore matcherIn since elem is not yet a final match
2223 temp.push( (matcherIn[i] = elem) );
2224 }
2225 }
2226 postFinder( null, (matcherOut = []), temp, xml );
2227 }
2228  
2229 // Move matched elements from seed to results to keep them synchronized
2230 i = matcherOut.length;
2231 while ( i-- ) {
2232 if ( (elem = matcherOut[i]) &&
2233 (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
2234  
2235 seed[temp] = !(results[temp] = elem);
2236 }
2237 }
2238 }
2239  
2240 // Add elements to results, through postFinder if defined
2241 } else {
2242 matcherOut = condense(
2243 matcherOut === results ?
2244 matcherOut.splice( preexisting, matcherOut.length ) :
2245 matcherOut
2246 );
2247 if ( postFinder ) {
2248 postFinder( null, results, matcherOut, xml );
2249 } else {
2250 push.apply( results, matcherOut );
2251 }
2252 }
2253 });
2254 }
2255  
2256 function matcherFromTokens( tokens ) {
2257 var checkContext, matcher, j,
2258 len = tokens.length,
2259 leadingRelative = Expr.relative[ tokens[0].type ],
2260 implicitRelative = leadingRelative || Expr.relative[" "],
2261 i = leadingRelative ? 1 : 0,
2262  
2263 // The foundational matcher ensures that elements are reachable from top-level context(s)
2264 matchContext = addCombinator( function( elem ) {
2265 return elem === checkContext;
2266 }, implicitRelative, true ),
2267 matchAnyContext = addCombinator( function( elem ) {
2268 return indexOf.call( checkContext, elem ) > -1;
2269 }, implicitRelative, true ),
2270 matchers = [ function( elem, context, xml ) {
2271 return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
2272 (checkContext = context).nodeType ?
2273 matchContext( elem, context, xml ) :
2274 matchAnyContext( elem, context, xml ) );
2275 } ];
2276  
2277 for ( ; i < len; i++ ) {
2278 if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
2279 matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
2280 } else {
2281 matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
2282  
2283 // Return special upon seeing a positional matcher
2284 if ( matcher[ expando ] ) {
2285 // Find the next relative operator (if any) for proper handling
2286 j = ++i;
2287 for ( ; j < len; j++ ) {
2288 if ( Expr.relative[ tokens[j].type ] ) {
2289 break;
2290 }
2291 }
2292 return setMatcher(
2293 i > 1 && elementMatcher( matchers ),
2294 i > 1 && toSelector(
2295 // If the preceding token was a descendant combinator, insert an implicit any-element `*`
2296 tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
2297 ).replace( rtrim, "$1" ),
2298 matcher,
2299 i < j && matcherFromTokens( tokens.slice( i, j ) ),
2300 j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
2301 j < len && toSelector( tokens )
2302 );
2303 }
2304 matchers.push( matcher );
2305 }
2306 }
2307  
2308 return elementMatcher( matchers );
2309 }
2310  
2311 function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
2312 var bySet = setMatchers.length > 0,
2313 byElement = elementMatchers.length > 0,
2314 superMatcher = function( seed, context, xml, results, outermost ) {
2315 var elem, j, matcher,
2316 matchedCount = 0,
2317 i = "0",
2318 unmatched = seed && [],
2319 setMatched = [],
2320 contextBackup = outermostContext,
2321 // We must always have either seed elements or outermost context
2322 elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
2323 // Use integer dirruns iff this is the outermost matcher
2324 dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
2325 len = elems.length;
2326  
2327 if ( outermost ) {
2328 outermostContext = context !== document && context;
2329 }
2330  
2331 // Add elements passing elementMatchers directly to results
2332 // Keep `i` a string if there are no elements so `matchedCount` will be "00" below
2333 // Support: IE<9, Safari
2334 // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
2335 for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
2336 if ( byElement && elem ) {
2337 j = 0;
2338 while ( (matcher = elementMatchers[j++]) ) {
2339 if ( matcher( elem, context, xml ) ) {
2340 results.push( elem );
2341 break;
2342 }
2343 }
2344 if ( outermost ) {
2345 dirruns = dirrunsUnique;
2346 }
2347 }
2348  
2349 // Track unmatched elements for set filters
2350 if ( bySet ) {
2351 // They will have gone through all possible matchers
2352 if ( (elem = !matcher && elem) ) {
2353 matchedCount--;
2354 }
2355  
2356 // Lengthen the array for every element, matched or not
2357 if ( seed ) {
2358 unmatched.push( elem );
2359 }
2360 }
2361 }
2362  
2363 // Apply set filters to unmatched elements
2364 matchedCount += i;
2365 if ( bySet && i !== matchedCount ) {
2366 j = 0;
2367 while ( (matcher = setMatchers[j++]) ) {
2368 matcher( unmatched, setMatched, context, xml );
2369 }
2370  
2371 if ( seed ) {
2372 // Reintegrate element matches to eliminate the need for sorting
2373 if ( matchedCount > 0 ) {
2374 while ( i-- ) {
2375 if ( !(unmatched[i] || setMatched[i]) ) {
2376 setMatched[i] = pop.call( results );
2377 }
2378 }
2379 }
2380  
2381 // Discard index placeholder values to get only actual matches
2382 setMatched = condense( setMatched );
2383 }
2384  
2385 // Add matches to results
2386 push.apply( results, setMatched );
2387  
2388 // Seedless set matches succeeding multiple successful matchers stipulate sorting
2389 if ( outermost && !seed && setMatched.length > 0 &&
2390 ( matchedCount + setMatchers.length ) > 1 ) {
2391  
2392 Sizzle.uniqueSort( results );
2393 }
2394 }
2395  
2396 // Override manipulation of globals by nested matchers
2397 if ( outermost ) {
2398 dirruns = dirrunsUnique;
2399 outermostContext = contextBackup;
2400 }
2401  
2402 return unmatched;
2403 };
2404  
2405 return bySet ?
2406 markFunction( superMatcher ) :
2407 superMatcher;
2408 }
2409  
2410 compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
2411 var i,
2412 setMatchers = [],
2413 elementMatchers = [],
2414 cached = compilerCache[ selector + " " ];
2415  
2416 if ( !cached ) {
2417 // Generate a function of recursive functions that can be used to check each element
2418 if ( !match ) {
2419 match = tokenize( selector );
2420 }
2421 i = match.length;
2422 while ( i-- ) {
2423 cached = matcherFromTokens( match[i] );
2424 if ( cached[ expando ] ) {
2425 setMatchers.push( cached );
2426 } else {
2427 elementMatchers.push( cached );
2428 }
2429 }
2430  
2431 // Cache the compiled function
2432 cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
2433  
2434 // Save selector and tokenization
2435 cached.selector = selector;
2436 }
2437 return cached;
2438 };
2439  
2440 /**
2441 * A low-level selection function that works with Sizzle's compiled
2442 * selector functions
2443 * @param {String|Function} selector A selector or a pre-compiled
2444 * selector function built with Sizzle.compile
2445 * @param {Element} context
2446 * @param {Array} [results]
2447 * @param {Array} [seed] A set of elements to match against
2448 */
2449 select = Sizzle.select = function( selector, context, results, seed ) {
2450 var i, tokens, token, type, find,
2451 compiled = typeof selector === "function" && selector,
2452 match = !seed && tokenize( (selector = compiled.selector || selector) );
2453  
2454 results = results || [];
2455  
2456 // Try to minimize operations if there is no seed and only one group
2457 if ( match.length === 1 ) {
2458  
2459 // Take a shortcut and set the context if the root selector is an ID
2460 tokens = match[0] = match[0].slice( 0 );
2461 if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
2462 support.getById && context.nodeType === 9 && documentIsHTML &&
2463 Expr.relative[ tokens[1].type ] ) {
2464  
2465 context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
2466 if ( !context ) {
2467 return results;
2468  
2469 // Precompiled matchers will still verify ancestry, so step up a level
2470 } else if ( compiled ) {
2471 context = context.parentNode;
2472 }
2473  
2474 selector = selector.slice( tokens.shift().value.length );
2475 }
2476  
2477 // Fetch a seed set for right-to-left matching
2478 i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
2479 while ( i-- ) {
2480 token = tokens[i];
2481  
2482 // Abort if we hit a combinator
2483 if ( Expr.relative[ (type = token.type) ] ) {
2484 break;
2485 }
2486 if ( (find = Expr.find[ type ]) ) {
2487 // Search, expanding context for leading sibling combinators
2488 if ( (seed = find(
2489 token.matches[0].replace( runescape, funescape ),
2490 rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
2491 )) ) {
2492  
2493 // If seed is empty or no tokens remain, we can return early
2494 tokens.splice( i, 1 );
2495 selector = seed.length && toSelector( tokens );
2496 if ( !selector ) {
2497 push.apply( results, seed );
2498 return results;
2499 }
2500  
2501 break;
2502 }
2503 }
2504 }
2505 }
2506  
2507 // Compile and execute a filtering function if one is not provided
2508 // Provide `match` to avoid retokenization if we modified the selector above
2509 ( compiled || compile( selector, match ) )(
2510 seed,
2511 context,
2512 !documentIsHTML,
2513 results,
2514 rsibling.test( selector ) && testContext( context.parentNode ) || context
2515 );
2516 return results;
2517 };
2518  
2519 // One-time assignments
2520  
2521 // Sort stability
2522 support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
2523  
2524 // Support: Chrome<14
2525 // Always assume duplicates if they aren't passed to the comparison function
2526 support.detectDuplicates = !!hasDuplicate;
2527  
2528 // Initialize against the default document
2529 setDocument();
2530  
2531 // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
2532 // Detached nodes confoundingly follow *each other*
2533 support.sortDetached = assert(function( div1 ) {
2534 // Should return 1, but returns 4 (following)
2535 return div1.compareDocumentPosition( document.createElement("div") ) & 1;
2536 });
2537  
2538 // Support: IE<8
2539 // Prevent attribute/property "interpolation"
2540 // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
2541 if ( !assert(function( div ) {
2542 div.innerHTML = "<a href='#'></a>";
2543 return div.firstChild.getAttribute("href") === "#" ;
2544 }) ) {
2545 addHandle( "type|href|height|width", function( elem, name, isXML ) {
2546 if ( !isXML ) {
2547 return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
2548 }
2549 });
2550 }
2551  
2552 // Support: IE<9
2553 // Use defaultValue in place of getAttribute("value")
2554 if ( !support.attributes || !assert(function( div ) {
2555 div.innerHTML = "<input/>";
2556 div.firstChild.setAttribute( "value", "" );
2557 return div.firstChild.getAttribute( "value" ) === "";
2558 }) ) {
2559 addHandle( "value", function( elem, name, isXML ) {
2560 if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
2561 return elem.defaultValue;
2562 }
2563 });
2564 }
2565  
2566 // Support: IE<9
2567 // Use getAttributeNode to fetch booleans when getAttribute lies
2568 if ( !assert(function( div ) {
2569 return div.getAttribute("disabled") == null;
2570 }) ) {
2571 addHandle( booleans, function( elem, name, isXML ) {
2572 var val;
2573 if ( !isXML ) {
2574 return elem[ name ] === true ? name.toLowerCase() :
2575 (val = elem.getAttributeNode( name )) && val.specified ?
2576 val.value :
2577 null;
2578 }
2579 });
2580 }
2581  
2582 return Sizzle;
2583  
2584 })( window );
2585  
2586  
2587  
2588 jQuery.find = Sizzle;
2589 jQuery.expr = Sizzle.selectors;
2590 jQuery.expr[":"] = jQuery.expr.pseudos;
2591 jQuery.unique = Sizzle.uniqueSort;
2592 jQuery.text = Sizzle.getText;
2593 jQuery.isXMLDoc = Sizzle.isXML;
2594 jQuery.contains = Sizzle.contains;
2595  
2596  
2597  
2598 var rneedsContext = jQuery.expr.match.needsContext;
2599  
2600 var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
2601  
2602  
2603  
2604 <(\w+)\s*\/?><\/\1>var risSimple = /^.[^:#\[\.,]*$/;
2605  
2606 <(\w+)\s*\/?><\/\1>// Implement the identical functionality for filter and not
2607 <(\w+)\s*\/?><\/\1>function winnow( elements, qualifier, not ) {
2608 <(\w+)\s*\/?><\/\1> if ( jQuery.isFunction( qualifier ) ) {
2609 <(\w+)\s*\/?><\/\1> return jQuery.grep( elements, function( elem, i ) {
2610 <(\w+)\s*\/?><\/\1> /* jshint -W018 */
2611 <(\w+)\s*\/?><\/\1> return !!qualifier.call( elem, i, elem ) !== not;
2612 <(\w+)\s*\/?><\/\1> });
2613  
2614 <(\w+)\s*\/?><\/\1> }
2615  
2616 <(\w+)\s*\/?><\/\1> if ( qualifier.nodeType ) {
2617 <(\w+)\s*\/?><\/\1> return jQuery.grep( elements, function( elem ) {
2618 <(\w+)\s*\/?><\/\1> return ( elem === qualifier ) !== not;
2619 <(\w+)\s*\/?><\/\1> });
2620  
2621 <(\w+)\s*\/?><\/\1> }
2622  
2623 <(\w+)\s*\/?><\/\1> if ( typeof qualifier === "string" ) {
2624 <(\w+)\s*\/?><\/\1> if ( risSimple.test( qualifier ) ) {
2625 <(\w+)\s*\/?><\/\1> return jQuery.filter( qualifier, elements, not );
2626 <(\w+)\s*\/?><\/\1> }
2627  
2628 <(\w+)\s*\/?><\/\1> qualifier = jQuery.filter( qualifier, elements );
2629 <(\w+)\s*\/?><\/\1> }
2630  
2631 <(\w+)\s*\/?><\/\1> return jQuery.grep( elements, function( elem ) {
2632 <(\w+)\s*\/?><\/\1> return ( indexOf.call( qualifier, elem ) >= 0 ) !== not;
2633 <(\w+)\s*\/?><\/\1> });
2634 <(\w+)\s*\/?><\/\1>}
2635  
2636 <(\w+)\s*\/?><\/\1>jQuery.filter = function( expr, elems, not ) {
2637 <(\w+)\s*\/?><\/\1> var elem = elems[ 0 ];
2638  
2639 <(\w+)\s*\/?><\/\1> if ( not ) {
2640 <(\w+)\s*\/?><\/\1> expr = ":not(" + expr + ")";
2641 <(\w+)\s*\/?><\/\1> }
2642  
2643 <(\w+)\s*\/?><\/\1> return elems.length === 1 && elem.nodeType === 1 ?
2644 <(\w+)\s*\/?><\/\1> jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
2645 <(\w+)\s*\/?><\/\1> jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
2646 <(\w+)\s*\/?><\/\1> return elem.nodeType === 1;
2647 <(\w+)\s*\/?><\/\1> }));
2648 <(\w+)\s*\/?><\/\1>};
2649  
2650 <(\w+)\s*\/?><\/\1>jQuery.fn.extend({
2651 <(\w+)\s*\/?><\/\1> find: function( selector ) {
2652 <(\w+)\s*\/?><\/\1> var i,
2653 <(\w+)\s*\/?><\/\1> len = this.length,
2654 <(\w+)\s*\/?><\/\1> ret = [],
2655 <(\w+)\s*\/?><\/\1> self = this;
2656  
2657 <(\w+)\s*\/?><\/\1> if ( typeof selector !== "string" ) {
2658 <(\w+)\s*\/?><\/\1> return this.pushStack( jQuery( selector ).filter(function() {
2659 <(\w+)\s*\/?><\/\1> for ( i = 0; i < len; i++ ) {
2660 <(\w+)\s*\/?><\/\1> if ( jQuery.contains( self[ i ], this ) ) {
2661 <(\w+)\s*\/?><\/\1> return true;
2662 <(\w+)\s*\/?><\/\1> }
2663 <(\w+)\s*\/?><\/\1> }
2664 <(\w+)\s*\/?><\/\1> }) );
2665 <(\w+)\s*\/?><\/\1> }
2666  
2667 <(\w+)\s*\/?><\/\1> for ( i = 0; i < len; i++ ) {
2668 <(\w+)\s*\/?><\/\1> jQuery.find( selector, self[ i ], ret );
2669 <(\w+)\s*\/?><\/\1> }
2670  
2671 <(\w+)\s*\/?><\/\1> // Needed because $( selector, context ) becomes $( context ).find( selector )
2672 <(\w+)\s*\/?><\/\1> ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
2673 <(\w+)\s*\/?><\/\1> ret.selector = this.selector ? this.selector + " " + selector : selector;
2674 <(\w+)\s*\/?><\/\1> return ret;
2675 <(\w+)\s*\/?><\/\1> },
2676 <(\w+)\s*\/?><\/\1> filter: function( selector ) {
2677 <(\w+)\s*\/?><\/\1> return this.pushStack( winnow(this, selector || [], false) );
2678 <(\w+)\s*\/?><\/\1> },
2679 <(\w+)\s*\/?><\/\1> not: function( selector ) {
2680 <(\w+)\s*\/?><\/\1> return this.pushStack( winnow(this, selector || [], true) );
2681 <(\w+)\s*\/?><\/\1> },
2682 <(\w+)\s*\/?><\/\1> is: function( selector ) {
2683 <(\w+)\s*\/?><\/\1> return !!winnow(
2684 <(\w+)\s*\/?><\/\1> this,
2685  
2686 <(\w+)\s*\/?><\/\1> // If this is a positional/relative selector, check membership in the returned set
2687 <(\w+)\s*\/?><\/\1> // so $("p:first").is("p:last") won't return true for a doc with two "p".
2688 <(\w+)\s*\/?><\/\1> typeof selector === "string" && rneedsContext.test( selector ) ?
2689 <(\w+)\s*\/?><\/\1> jQuery( selector ) :
2690 <(\w+)\s*\/?><\/\1> selector || [],
2691 <(\w+)\s*\/?><\/\1> false
2692 <(\w+)\s*\/?><\/\1> ).length;
2693 <(\w+)\s*\/?><\/\1> }
2694 <(\w+)\s*\/?><\/\1>});
2695  
2696  
2697 <(\w+)\s*\/?><\/\1>// Initialize a jQuery object
2698  
2699  
2700 <(\w+)\s*\/?><\/\1>// A central reference to the root jQuery(document)
2701 <(\w+)\s*\/?><\/\1>var rootjQuery,
2702  
2703 <(\w+)\s*\/?><\/\1> // A simple way to check for HTML strings
2704 <(\w+)\s*\/?><\/\1> // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
2705 <(\w+)\s*\/?><\/\1> // Strict HTML recognition (#11290: must start with <)
2706 <(\w+)\s*\/?><\/\1> rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
2707  
2708 <(\w+)\s*\/?><\/\1><[\w\W]+> init = jQuery.fn.init = function( selector, context ) {
2709 <(\w+)\s*\/?><\/\1><[\w\W]+> var match, elem;
2710  
2711 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(""), $(null), $(undefined), $(false)
2712 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !selector ) {
2713 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2714 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2715  
2716 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle HTML strings
2717 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof selector === "string" ) {
2718 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) {
2719 <(\w+)\s*\/?><\/\1><[\w\W]+> // Assume that strings that start and end with <> are HTML and skip the regex check
2720 <(\w+)\s*\/?><\/\1><[\w\W]+> match = [ null, selector, null ];
2721  
2722 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2723 <(\w+)\s*\/?><\/\1><[\w\W]+> match = rquickExpr.exec( selector );
2724 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2725  
2726 <(\w+)\s*\/?><\/\1><[\w\W]+> // Match html or make sure no context is specified for #id
2727 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( match && (match[1] || !context) ) {
2728  
2729 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(html) -> $(array)
2730 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( match[1] ) {
2731 <(\w+)\s*\/?><\/\1><[\w\W]+> context = context instanceof jQuery ? context[0] : context;
2732  
2733 <(\w+)\s*\/?><\/\1><[\w\W]+> // scripts is true for back-compat
2734 <(\w+)\s*\/?><\/\1><[\w\W]+> // Intentionally let the error be thrown if parseHTML is not present
2735 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.merge( this, jQuery.parseHTML(
2736 <(\w+)\s*\/?><\/\1><[\w\W]+> match[1],
2737 <(\w+)\s*\/?><\/\1><[\w\W]+> context && context.nodeType ? context.ownerDocument || context : document,
2738 <(\w+)\s*\/?><\/\1><[\w\W]+> true
2739 <(\w+)\s*\/?><\/\1><[\w\W]+> ) );
2740  
2741 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(html, props)
2742 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
2743 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( match in context ) {
2744 <(\w+)\s*\/?><\/\1><[\w\W]+> // Properties of context are called as methods if possible
2745 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isFunction( this[ match ] ) ) {
2746 <(\w+)\s*\/?><\/\1><[\w\W]+> this[ match ]( context[ match ] );
2747  
2748 <(\w+)\s*\/?><\/\1><[\w\W]+> // ...and otherwise set as attributes
2749 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2750 <(\w+)\s*\/?><\/\1><[\w\W]+> this.attr( match, context[ match ] );
2751 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2752 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2753 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2754  
2755 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2756  
2757 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(#id)
2758 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2759 <(\w+)\s*\/?><\/\1><[\w\W]+> elem = document.getElementById( match[2] );
2760  
2761 <(\w+)\s*\/?><\/\1><[\w\W]+> // Check parentNode to catch when Blackberry 4.6 returns
2762 <(\w+)\s*\/?><\/\1><[\w\W]+> // nodes that are no longer in the document #6963
2763 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem && elem.parentNode ) {
2764 <(\w+)\s*\/?><\/\1><[\w\W]+> // Inject the element directly into the jQuery object
2765 <(\w+)\s*\/?><\/\1><[\w\W]+> this.length = 1;
2766 <(\w+)\s*\/?><\/\1><[\w\W]+> this[0] = elem;
2767 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2768  
2769 <(\w+)\s*\/?><\/\1><[\w\W]+> this.context = document;
2770 <(\w+)\s*\/?><\/\1><[\w\W]+> this.selector = selector;
2771 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2772 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2773  
2774 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(expr, $(...))
2775 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( !context || context.jquery ) {
2776 <(\w+)\s*\/?><\/\1><[\w\W]+> return ( context || rootjQuery ).find( selector );
2777  
2778 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(expr, context)
2779 <(\w+)\s*\/?><\/\1><[\w\W]+> // (which is just equivalent to: $(context).find(expr)
2780 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2781 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.constructor( context ).find( selector );
2782 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2783  
2784 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(DOMElement)
2785 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( selector.nodeType ) {
2786 <(\w+)\s*\/?><\/\1><[\w\W]+> this.context = this[0] = selector;
2787 <(\w+)\s*\/?><\/\1><[\w\W]+> this.length = 1;
2788 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2789  
2790 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(function)
2791 <(\w+)\s*\/?><\/\1><[\w\W]+> // Shortcut for document ready
2792 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( jQuery.isFunction( selector ) ) {
2793 <(\w+)\s*\/?><\/\1><[\w\W]+> return typeof rootjQuery.ready !== "undefined" ?
2794 <(\w+)\s*\/?><\/\1><[\w\W]+> rootjQuery.ready( selector ) :
2795 <(\w+)\s*\/?><\/\1><[\w\W]+> // Execute immediately if ready is not present
2796 <(\w+)\s*\/?><\/\1><[\w\W]+> selector( jQuery );
2797 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2798  
2799 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector.selector !== undefined ) {
2800 <(\w+)\s*\/?><\/\1><[\w\W]+> this.selector = selector.selector;
2801 <(\w+)\s*\/?><\/\1><[\w\W]+> this.context = selector.context;
2802 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2803  
2804 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.makeArray( selector, this );
2805 <(\w+)\s*\/?><\/\1><[\w\W]+> };
2806  
2807 <(\w+)\s*\/?><\/\1><[\w\W]+>// Give the init function the jQuery prototype for later instantiation
2808 <(\w+)\s*\/?><\/\1><[\w\W]+>init.prototype = jQuery.fn;
2809  
2810 <(\w+)\s*\/?><\/\1><[\w\W]+>// Initialize central reference
2811 <(\w+)\s*\/?><\/\1><[\w\W]+>rootjQuery = jQuery( document );
2812  
2813  
2814 <(\w+)\s*\/?><\/\1><[\w\W]+>var rparentsprev = /^(?:parents|prev(?:Until|All))/,
2815 <(\w+)\s*\/?><\/\1><[\w\W]+> // methods guaranteed to produce a unique set when starting from a unique set
2816 <(\w+)\s*\/?><\/\1><[\w\W]+> guaranteedUnique = {
2817 <(\w+)\s*\/?><\/\1><[\w\W]+> children: true,
2818 <(\w+)\s*\/?><\/\1><[\w\W]+> contents: true,
2819 <(\w+)\s*\/?><\/\1><[\w\W]+> next: true,
2820 <(\w+)\s*\/?><\/\1><[\w\W]+> prev: true
2821 <(\w+)\s*\/?><\/\1><[\w\W]+> };
2822  
2823 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
2824 <(\w+)\s*\/?><\/\1><[\w\W]+> dir: function( elem, dir, until ) {
2825 <(\w+)\s*\/?><\/\1><[\w\W]+> var matched = [],
2826 <(\w+)\s*\/?><\/\1><[\w\W]+> truncate = until !== undefined;
2827  
2828 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) {
2829 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.nodeType === 1 ) {
2830 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( truncate && jQuery( elem ).is( until ) ) {
2831 <(\w+)\s*\/?><\/\1><[\w\W]+> break;
2832 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2833 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.push( elem );
2834 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2835 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2836 <(\w+)\s*\/?><\/\1><[\w\W]+> return matched;
2837 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2838  
2839 <(\w+)\s*\/?><\/\1><[\w\W]+> sibling: function( n, elem ) {
2840 <(\w+)\s*\/?><\/\1><[\w\W]+> var matched = [];
2841  
2842 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; n; n = n.nextSibling ) {
2843 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( n.nodeType === 1 && n !== elem ) {
2844 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.push( n );
2845 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2846 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2847  
2848 <(\w+)\s*\/?><\/\1><[\w\W]+> return matched;
2849 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2850 <(\w+)\s*\/?><\/\1><[\w\W]+>});
2851  
2852 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
2853 <(\w+)\s*\/?><\/\1><[\w\W]+> has: function( target ) {
2854 <(\w+)\s*\/?><\/\1><[\w\W]+> var targets = jQuery( target, this ),
2855 <(\w+)\s*\/?><\/\1><[\w\W]+> l = targets.length;
2856  
2857 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.filter(function() {
2858 <(\w+)\s*\/?><\/\1><[\w\W]+> var i = 0;
2859 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < l; i++ ) {
2860 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.contains( this, targets[i] ) ) {
2861 <(\w+)\s*\/?><\/\1><[\w\W]+> return true;
2862 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2863 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2864 <(\w+)\s*\/?><\/\1><[\w\W]+> });
2865 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2866  
2867 <(\w+)\s*\/?><\/\1><[\w\W]+> closest: function( selectors, context ) {
2868 <(\w+)\s*\/?><\/\1><[\w\W]+> var cur,
2869 <(\w+)\s*\/?><\/\1><[\w\W]+> i = 0,
2870 <(\w+)\s*\/?><\/\1><[\w\W]+> l = this.length,
2871 <(\w+)\s*\/?><\/\1><[\w\W]+> matched = [],
2872 <(\w+)\s*\/?><\/\1><[\w\W]+> pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
2873 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( selectors, context || this.context ) :
2874 <(\w+)\s*\/?><\/\1><[\w\W]+> 0;
2875  
2876 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < l; i++ ) {
2877 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
2878 <(\w+)\s*\/?><\/\1><[\w\W]+> // Always skip document fragments
2879 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( cur.nodeType < 11 && (pos ?
2880 <(\w+)\s*\/?><\/\1><[\w\W]+> pos.index(cur) > -1 :
2881  
2882 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't pass non-elements to Sizzle
2883 <(\w+)\s*\/?><\/\1><[\w\W]+> cur.nodeType === 1 &&
2884 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.find.matchesSelector(cur, selectors)) ) {
2885  
2886 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.push( cur );
2887 <(\w+)\s*\/?><\/\1><[\w\W]+> break;
2888 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2889 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2890 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2891  
2892 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
2893 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2894  
2895 <(\w+)\s*\/?><\/\1><[\w\W]+> // Determine the position of an element within
2896 <(\w+)\s*\/?><\/\1><[\w\W]+> // the matched set of elements
2897 <(\w+)\s*\/?><\/\1><[\w\W]+> index: function( elem ) {
2898  
2899 <(\w+)\s*\/?><\/\1><[\w\W]+> // No argument, return index in parent
2900 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !elem ) {
2901 <(\w+)\s*\/?><\/\1><[\w\W]+> return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
2902 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2903  
2904 <(\w+)\s*\/?><\/\1><[\w\W]+> // index in selector
2905 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof elem === "string" ) {
2906 <(\w+)\s*\/?><\/\1><[\w\W]+> return indexOf.call( jQuery( elem ), this[ 0 ] );
2907 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2908  
2909 <(\w+)\s*\/?><\/\1><[\w\W]+> // Locate the position of the desired element
2910 <(\w+)\s*\/?><\/\1><[\w\W]+> return indexOf.call( this,
2911  
2912 <(\w+)\s*\/?><\/\1><[\w\W]+> // If it receives a jQuery object, the first element is used
2913 <(\w+)\s*\/?><\/\1><[\w\W]+> elem.jquery ? elem[ 0 ] : elem
2914 <(\w+)\s*\/?><\/\1><[\w\W]+> );
2915 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2916  
2917 <(\w+)\s*\/?><\/\1><[\w\W]+> add: function( selector, context ) {
2918 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.pushStack(
2919 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.unique(
2920 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.merge( this.get(), jQuery( selector, context ) )
2921 <(\w+)\s*\/?><\/\1><[\w\W]+> )
2922 <(\w+)\s*\/?><\/\1><[\w\W]+> );
2923 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2924  
2925 <(\w+)\s*\/?><\/\1><[\w\W]+> addBack: function( selector ) {
2926 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.add( selector == null ?
2927 <(\w+)\s*\/?><\/\1><[\w\W]+> this.prevObject : this.prevObject.filter(selector)
2928 <(\w+)\s*\/?><\/\1><[\w\W]+> );
2929 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2930 <(\w+)\s*\/?><\/\1><[\w\W]+>});
2931  
2932 <(\w+)\s*\/?><\/\1><[\w\W]+>function sibling( cur, dir ) {
2933 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {}
2934 <(\w+)\s*\/?><\/\1><[\w\W]+> return cur;
2935 <(\w+)\s*\/?><\/\1><[\w\W]+>}
2936  
2937 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.each({
2938 <(\w+)\s*\/?><\/\1><[\w\W]+> parent: function( elem ) {
2939 <(\w+)\s*\/?><\/\1><[\w\W]+> var parent = elem.parentNode;
2940 <(\w+)\s*\/?><\/\1><[\w\W]+> return parent && parent.nodeType !== 11 ? parent : null;
2941 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2942 <(\w+)\s*\/?><\/\1><[\w\W]+> parents: function( elem ) {
2943 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "parentNode" );
2944 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2945 <(\w+)\s*\/?><\/\1><[\w\W]+> parentsUntil: function( elem, i, until ) {
2946 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "parentNode", until );
2947 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2948 <(\w+)\s*\/?><\/\1><[\w\W]+> next: function( elem ) {
2949 <(\w+)\s*\/?><\/\1><[\w\W]+> return sibling( elem, "nextSibling" );
2950 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2951 <(\w+)\s*\/?><\/\1><[\w\W]+> prev: function( elem ) {
2952 <(\w+)\s*\/?><\/\1><[\w\W]+> return sibling( elem, "previousSibling" );
2953 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2954 <(\w+)\s*\/?><\/\1><[\w\W]+> nextAll: function( elem ) {
2955 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "nextSibling" );
2956 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2957 <(\w+)\s*\/?><\/\1><[\w\W]+> prevAll: function( elem ) {
2958 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "previousSibling" );
2959 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2960 <(\w+)\s*\/?><\/\1><[\w\W]+> nextUntil: function( elem, i, until ) {
2961 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "nextSibling", until );
2962 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2963 <(\w+)\s*\/?><\/\1><[\w\W]+> prevUntil: function( elem, i, until ) {
2964 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "previousSibling", until );
2965 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2966 <(\w+)\s*\/?><\/\1><[\w\W]+> siblings: function( elem ) {
2967 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
2968 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2969 <(\w+)\s*\/?><\/\1><[\w\W]+> children: function( elem ) {
2970 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.sibling( elem.firstChild );
2971 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2972 <(\w+)\s*\/?><\/\1><[\w\W]+> contents: function( elem ) {
2973 <(\w+)\s*\/?><\/\1><[\w\W]+> return elem.contentDocument || jQuery.merge( [], elem.childNodes );
2974 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2975 <(\w+)\s*\/?><\/\1><[\w\W]+>}, function( name, fn ) {
2976 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.fn[ name ] = function( until, selector ) {
2977 <(\w+)\s*\/?><\/\1><[\w\W]+> var matched = jQuery.map( this, fn, until );
2978  
2979 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( name.slice( -5 ) !== "Until" ) {
2980 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = until;
2981 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2982  
2983 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector && typeof selector === "string" ) {
2984 <(\w+)\s*\/?><\/\1><[\w\W]+> matched = jQuery.filter( selector, matched );
2985 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2986  
2987 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this.length > 1 ) {
2988 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove duplicates
2989 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !guaranteedUnique[ name ] ) {
2990 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.unique( matched );
2991 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2992  
2993 <(\w+)\s*\/?><\/\1><[\w\W]+> // Reverse order for parents* and prev-derivatives
2994 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( rparentsprev.test( name ) ) {
2995 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.reverse();
2996 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2997 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2998  
2999 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.pushStack( matched );
3000 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3001 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3002 <(\w+)\s*\/?><\/\1><[\w\W]+>var rnotwhite = (/\S+/g);
3003  
3004  
3005  
3006 <(\w+)\s*\/?><\/\1><[\w\W]+>// String to Object options format cache
3007 <(\w+)\s*\/?><\/\1><[\w\W]+>var optionsCache = {};
3008  
3009 <(\w+)\s*\/?><\/\1><[\w\W]+>// Convert String-formatted options into Object-formatted ones and store in cache
3010 <(\w+)\s*\/?><\/\1><[\w\W]+>function createOptions( options ) {
3011 <(\w+)\s*\/?><\/\1><[\w\W]+> var object = optionsCache[ options ] = {};
3012 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
3013 <(\w+)\s*\/?><\/\1><[\w\W]+> object[ flag ] = true;
3014 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3015 <(\w+)\s*\/?><\/\1><[\w\W]+> return object;
3016 <(\w+)\s*\/?><\/\1><[\w\W]+>}
3017  
3018 <(\w+)\s*\/?><\/\1><[\w\W]+>/*
3019 <(\w+)\s*\/?><\/\1><[\w\W]+> * Create a callback list using the following parameters:
3020 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3021 <(\w+)\s*\/?><\/\1><[\w\W]+> * options: an optional list of space-separated options that will change how
3022 <(\w+)\s*\/?><\/\1><[\w\W]+> * the callback list behaves or a more traditional option object
3023 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3024 <(\w+)\s*\/?><\/\1><[\w\W]+> * By default a callback list will act like an event callback list and can be
3025 <(\w+)\s*\/?><\/\1><[\w\W]+> * "fired" multiple times.
3026 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3027 <(\w+)\s*\/?><\/\1><[\w\W]+> * Possible options:
3028 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3029 <(\w+)\s*\/?><\/\1><[\w\W]+> * once: will ensure the callback list can only be fired once (like a Deferred)
3030 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3031 <(\w+)\s*\/?><\/\1><[\w\W]+> * memory: will keep track of previous values and will call any callback added
3032 <(\w+)\s*\/?><\/\1><[\w\W]+> * after the list has been fired right away with the latest "memorized"
3033 <(\w+)\s*\/?><\/\1><[\w\W]+> * values (like a Deferred)
3034 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3035 <(\w+)\s*\/?><\/\1><[\w\W]+> * unique: will ensure a callback can only be added once (no duplicate in the list)
3036 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3037 <(\w+)\s*\/?><\/\1><[\w\W]+> * stopOnFalse: interrupt callings when a callback returns false
3038 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3039 <(\w+)\s*\/?><\/\1><[\w\W]+> */
3040 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.Callbacks = function( options ) {
3041  
3042 <(\w+)\s*\/?><\/\1><[\w\W]+> // Convert options from String-formatted to Object-formatted if needed
3043 <(\w+)\s*\/?><\/\1><[\w\W]+> // (we check in cache first)
3044 <(\w+)\s*\/?><\/\1><[\w\W]+> options = typeof options === "string" ?
3045 <(\w+)\s*\/?><\/\1><[\w\W]+> ( optionsCache[ options ] || createOptions( options ) ) :
3046 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( {}, options );
3047  
3048 <(\w+)\s*\/?><\/\1><[\w\W]+> var // Last fire value (for non-forgettable lists)
3049 <(\w+)\s*\/?><\/\1><[\w\W]+> memory,
3050 <(\w+)\s*\/?><\/\1><[\w\W]+> // Flag to know if list was already fired
3051 <(\w+)\s*\/?><\/\1><[\w\W]+> fired,
3052 <(\w+)\s*\/?><\/\1><[\w\W]+> // Flag to know if list is currently firing
3053 <(\w+)\s*\/?><\/\1><[\w\W]+> firing,
3054 <(\w+)\s*\/?><\/\1><[\w\W]+> // First callback to fire (used internally by add and fireWith)
3055 <(\w+)\s*\/?><\/\1><[\w\W]+> firingStart,
3056 <(\w+)\s*\/?><\/\1><[\w\W]+> // End of the loop when firing
3057 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength,
3058 <(\w+)\s*\/?><\/\1><[\w\W]+> // Index of currently firing callback (modified by remove if needed)
3059 <(\w+)\s*\/?><\/\1><[\w\W]+> firingIndex,
3060 <(\w+)\s*\/?><\/\1><[\w\W]+> // Actual callback list
3061 <(\w+)\s*\/?><\/\1><[\w\W]+> list = [],
3062 <(\w+)\s*\/?><\/\1><[\w\W]+> // Stack of fire calls for repeatable lists
3063 <(\w+)\s*\/?><\/\1><[\w\W]+> stack = !options.once && [],
3064 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fire callbacks
3065 <(\w+)\s*\/?><\/\1><[\w\W]+> fire = function( data ) {
3066 <(\w+)\s*\/?><\/\1><[\w\W]+> memory = options.memory && data;
3067 <(\w+)\s*\/?><\/\1><[\w\W]+> fired = true;
3068 <(\w+)\s*\/?><\/\1><[\w\W]+> firingIndex = firingStart || 0;
3069 <(\w+)\s*\/?><\/\1><[\w\W]+> firingStart = 0;
3070 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength = list.length;
3071 <(\w+)\s*\/?><\/\1><[\w\W]+> firing = true;
3072 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; list && firingIndex < firingLength; firingIndex++ ) {
3073 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
3074 <(\w+)\s*\/?><\/\1><[\w\W]+> memory = false; // To prevent further calls using add
3075 <(\w+)\s*\/?><\/\1><[\w\W]+> break;
3076 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3077 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3078 <(\w+)\s*\/?><\/\1><[\w\W]+> firing = false;
3079 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list ) {
3080 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( stack ) {
3081 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( stack.length ) {
3082 <(\w+)\s*\/?><\/\1><[\w\W]+> fire( stack.shift() );
3083 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3084 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( memory ) {
3085 <(\w+)\s*\/?><\/\1><[\w\W]+> list = [];
3086 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3087 <(\w+)\s*\/?><\/\1><[\w\W]+> self.disable();
3088 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3089 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3090 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3091 <(\w+)\s*\/?><\/\1><[\w\W]+> // Actual Callbacks object
3092 <(\w+)\s*\/?><\/\1><[\w\W]+> self = {
3093 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add a callback or a collection of callbacks to the list
3094 <(\w+)\s*\/?><\/\1><[\w\W]+> add: function() {
3095 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list ) {
3096 <(\w+)\s*\/?><\/\1><[\w\W]+> // First, we save the current length
3097 <(\w+)\s*\/?><\/\1><[\w\W]+> var start = list.length;
3098 <(\w+)\s*\/?><\/\1><[\w\W]+> (function add( args ) {
3099 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( args, function( _, arg ) {
3100 <(\w+)\s*\/?><\/\1><[\w\W]+> var type = jQuery.type( arg );
3101 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type === "function" ) {
3102 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !options.unique || !self.has( arg ) ) {
3103 <(\w+)\s*\/?><\/\1><[\w\W]+> list.push( arg );
3104 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3105 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( arg && arg.length && type !== "string" ) {
3106 <(\w+)\s*\/?><\/\1><[\w\W]+> // Inspect recursively
3107 <(\w+)\s*\/?><\/\1><[\w\W]+> add( arg );
3108 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3109 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3110 <(\w+)\s*\/?><\/\1><[\w\W]+> })( arguments );
3111 <(\w+)\s*\/?><\/\1><[\w\W]+> // Do we need to add the callbacks to the
3112 <(\w+)\s*\/?><\/\1><[\w\W]+> // current firing batch?
3113 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( firing ) {
3114 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength = list.length;
3115 <(\w+)\s*\/?><\/\1><[\w\W]+> // With memory, if we're not firing then
3116 <(\w+)\s*\/?><\/\1><[\w\W]+> // we should call right away
3117 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( memory ) {
3118 <(\w+)\s*\/?><\/\1><[\w\W]+> firingStart = start;
3119 <(\w+)\s*\/?><\/\1><[\w\W]+> fire( memory );
3120 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3121 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3122 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3123 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3124 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove a callback from the list
3125 <(\w+)\s*\/?><\/\1><[\w\W]+> remove: function() {
3126 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list ) {
3127 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( arguments, function( _, arg ) {
3128 <(\w+)\s*\/?><\/\1><[\w\W]+> var index;
3129 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
3130 <(\w+)\s*\/?><\/\1><[\w\W]+> list.splice( index, 1 );
3131 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle firing indexes
3132 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( firing ) {
3133 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( index <= firingLength ) {
3134 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength--;
3135 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3136 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( index <= firingIndex ) {
3137 <(\w+)\s*\/?><\/\1><[\w\W]+> firingIndex--;
3138 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3139 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3140 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3141 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3142 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3143 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3144 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3145 <(\w+)\s*\/?><\/\1><[\w\W]+> // Check if a given callback is in the list.
3146 <(\w+)\s*\/?><\/\1><[\w\W]+> // If no argument is given, return whether or not list has callbacks attached.
3147 <(\w+)\s*\/?><\/\1><[\w\W]+> has: function( fn ) {
3148 <(\w+)\s*\/?><\/\1><[\w\W]+> return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
3149 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3150 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove all callbacks from the list
3151 <(\w+)\s*\/?><\/\1><[\w\W]+> empty: function() {
3152 <(\w+)\s*\/?><\/\1><[\w\W]+> list = [];
3153 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength = 0;
3154 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3155 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3156 <(\w+)\s*\/?><\/\1><[\w\W]+> // Have the list do nothing anymore
3157 <(\w+)\s*\/?><\/\1><[\w\W]+> disable: function() {
3158 <(\w+)\s*\/?><\/\1><[\w\W]+> list = stack = memory = undefined;
3159 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3160 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3161 <(\w+)\s*\/?><\/\1><[\w\W]+> // Is it disabled?
3162 <(\w+)\s*\/?><\/\1><[\w\W]+> disabled: function() {
3163 <(\w+)\s*\/?><\/\1><[\w\W]+> return !list;
3164 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3165 <(\w+)\s*\/?><\/\1><[\w\W]+> // Lock the list in its current state
3166 <(\w+)\s*\/?><\/\1><[\w\W]+> lock: function() {
3167 <(\w+)\s*\/?><\/\1><[\w\W]+> stack = undefined;
3168 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !memory ) {
3169 <(\w+)\s*\/?><\/\1><[\w\W]+> self.disable();
3170 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3171 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3172 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3173 <(\w+)\s*\/?><\/\1><[\w\W]+> // Is it locked?
3174 <(\w+)\s*\/?><\/\1><[\w\W]+> locked: function() {
3175 <(\w+)\s*\/?><\/\1><[\w\W]+> return !stack;
3176 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3177 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call all callbacks with the given context and arguments
3178 <(\w+)\s*\/?><\/\1><[\w\W]+> fireWith: function( context, args ) {
3179 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list && ( !fired || stack ) ) {
3180 <(\w+)\s*\/?><\/\1><[\w\W]+> args = args || [];
3181 <(\w+)\s*\/?><\/\1><[\w\W]+> args = [ context, args.slice ? args.slice() : args ];
3182 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( firing ) {
3183 <(\w+)\s*\/?><\/\1><[\w\W]+> stack.push( args );
3184 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3185 <(\w+)\s*\/?><\/\1><[\w\W]+> fire( args );
3186 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3187 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3188 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3189 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3190 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call all the callbacks with the given arguments
3191 <(\w+)\s*\/?><\/\1><[\w\W]+> fire: function() {
3192 <(\w+)\s*\/?><\/\1><[\w\W]+> self.fireWith( this, arguments );
3193 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3194 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3195 <(\w+)\s*\/?><\/\1><[\w\W]+> // To know if the callbacks have already been called at least once
3196 <(\w+)\s*\/?><\/\1><[\w\W]+> fired: function() {
3197 <(\w+)\s*\/?><\/\1><[\w\W]+> return !!fired;
3198 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3199 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3200  
3201 <(\w+)\s*\/?><\/\1><[\w\W]+> return self;
3202 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3203  
3204  
3205 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3206  
3207 <(\w+)\s*\/?><\/\1><[\w\W]+> Deferred: function( func ) {
3208 <(\w+)\s*\/?><\/\1><[\w\W]+> var tuples = [
3209 <(\w+)\s*\/?><\/\1><[\w\W]+> // action, add listener, listener list, final state
3210 <(\w+)\s*\/?><\/\1><[\w\W]+> [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
3211 <(\w+)\s*\/?><\/\1><[\w\W]+> [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
3212 <(\w+)\s*\/?><\/\1><[\w\W]+> [ "notify", "progress", jQuery.Callbacks("memory") ]
3213 <(\w+)\s*\/?><\/\1><[\w\W]+> ],
3214 <(\w+)\s*\/?><\/\1><[\w\W]+> state = "pending",
3215 <(\w+)\s*\/?><\/\1><[\w\W]+> promise = {
3216 <(\w+)\s*\/?><\/\1><[\w\W]+> state: function() {
3217 <(\w+)\s*\/?><\/\1><[\w\W]+> return state;
3218 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3219 <(\w+)\s*\/?><\/\1><[\w\W]+> always: function() {
3220 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.done( arguments ).fail( arguments );
3221 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3222 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3223 <(\w+)\s*\/?><\/\1><[\w\W]+> then: function( /* fnDone, fnFail, fnProgress */ ) {
3224 <(\w+)\s*\/?><\/\1><[\w\W]+> var fns = arguments;
3225 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.Deferred(function( newDefer ) {
3226 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( tuples, function( i, tuple ) {
3227 <(\w+)\s*\/?><\/\1><[\w\W]+> var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
3228 <(\w+)\s*\/?><\/\1><[\w\W]+> // deferred[ done | fail | progress ] for forwarding actions to newDefer
3229 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[1] ](function() {
3230 <(\w+)\s*\/?><\/\1><[\w\W]+> var returned = fn && fn.apply( this, arguments );
3231 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( returned && jQuery.isFunction( returned.promise ) ) {
3232 <(\w+)\s*\/?><\/\1><[\w\W]+> returned.promise()
3233 <(\w+)\s*\/?><\/\1><[\w\W]+> .done( newDefer.resolve )
3234 <(\w+)\s*\/?><\/\1><[\w\W]+> .fail( newDefer.reject )
3235 <(\w+)\s*\/?><\/\1><[\w\W]+> .progress( newDefer.notify );
3236 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3237 <(\w+)\s*\/?><\/\1><[\w\W]+> newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
3238 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3239 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3240 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3241 <(\w+)\s*\/?><\/\1><[\w\W]+> fns = null;
3242 <(\w+)\s*\/?><\/\1><[\w\W]+> }).promise();
3243 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3244 <(\w+)\s*\/?><\/\1><[\w\W]+> // Get a promise for this deferred
3245 <(\w+)\s*\/?><\/\1><[\w\W]+> // If obj is provided, the promise aspect is added to the object
3246 <(\w+)\s*\/?><\/\1><[\w\W]+> promise: function( obj ) {
3247 <(\w+)\s*\/?><\/\1><[\w\W]+> return obj != null ? jQuery.extend( obj, promise ) : promise;
3248 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3249 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3250 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred = {};
3251  
3252 <(\w+)\s*\/?><\/\1><[\w\W]+> // Keep pipe for back-compat
3253 <(\w+)\s*\/?><\/\1><[\w\W]+> promise.pipe = promise.then;
3254  
3255 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add list-specific methods
3256 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( tuples, function( i, tuple ) {
3257 <(\w+)\s*\/?><\/\1><[\w\W]+> var list = tuple[ 2 ],
3258 <(\w+)\s*\/?><\/\1><[\w\W]+> stateString = tuple[ 3 ];
3259  
3260 <(\w+)\s*\/?><\/\1><[\w\W]+> // promise[ done | fail | progress ] = list.add
3261 <(\w+)\s*\/?><\/\1><[\w\W]+> promise[ tuple[1] ] = list.add;
3262  
3263 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle state
3264 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( stateString ) {
3265 <(\w+)\s*\/?><\/\1><[\w\W]+> list.add(function() {
3266 <(\w+)\s*\/?><\/\1><[\w\W]+> // state = [ resolved | rejected ]
3267 <(\w+)\s*\/?><\/\1><[\w\W]+> state = stateString;
3268  
3269 <(\w+)\s*\/?><\/\1><[\w\W]+> // [ reject_list | resolve_list ].disable; progress_list.lock
3270 <(\w+)\s*\/?><\/\1><[\w\W]+> }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
3271 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3272  
3273 <(\w+)\s*\/?><\/\1><[\w\W]+> // deferred[ resolve | reject | notify ]
3274 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[0] ] = function() {
3275 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
3276 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3277 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3278 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[0] + "With" ] = list.fireWith;
3279 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3280  
3281 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make the deferred a promise
3282 <(\w+)\s*\/?><\/\1><[\w\W]+> promise.promise( deferred );
3283  
3284 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call given func if any
3285 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( func ) {
3286 <(\w+)\s*\/?><\/\1><[\w\W]+> func.call( deferred, deferred );
3287 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3288  
3289 <(\w+)\s*\/?><\/\1><[\w\W]+> // All done!
3290 <(\w+)\s*\/?><\/\1><[\w\W]+> return deferred;
3291 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3292  
3293 <(\w+)\s*\/?><\/\1><[\w\W]+> // Deferred helper
3294 <(\w+)\s*\/?><\/\1><[\w\W]+> when: function( subordinate /* , ..., subordinateN */ ) {
3295 <(\w+)\s*\/?><\/\1><[\w\W]+> var i = 0,
3296 <(\w+)\s*\/?><\/\1><[\w\W]+> resolveValues = slice.call( arguments ),
3297 <(\w+)\s*\/?><\/\1><[\w\W]+> length = resolveValues.length,
3298  
3299 <(\w+)\s*\/?><\/\1><[\w\W]+> // the count of uncompleted subordinates
3300 <(\w+)\s*\/?><\/\1><[\w\W]+> remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
3301  
3302 <(\w+)\s*\/?><\/\1><[\w\W]+> // the master Deferred. If resolveValues consist of only a single Deferred, just use that.
3303 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
3304  
3305 <(\w+)\s*\/?><\/\1><[\w\W]+> // Update function for both resolve and progress values
3306 <(\w+)\s*\/?><\/\1><[\w\W]+> updateFunc = function( i, contexts, values ) {
3307 <(\w+)\s*\/?><\/\1><[\w\W]+> return function( value ) {
3308 <(\w+)\s*\/?><\/\1><[\w\W]+> contexts[ i ] = this;
3309 <(\w+)\s*\/?><\/\1><[\w\W]+> values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
3310 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( values === progressValues ) {
3311 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.notifyWith( contexts, values );
3312 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( !( --remaining ) ) {
3313 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.resolveWith( contexts, values );
3314 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3315 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3316 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3317  
3318 <(\w+)\s*\/?><\/\1><[\w\W]+> progressValues, progressContexts, resolveContexts;
3319  
3320 <(\w+)\s*\/?><\/\1><[\w\W]+> // add listeners to Deferred subordinates; treat others as resolved
3321 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( length > 1 ) {
3322 <(\w+)\s*\/?><\/\1><[\w\W]+> progressValues = new Array( length );
3323 <(\w+)\s*\/?><\/\1><[\w\W]+> progressContexts = new Array( length );
3324 <(\w+)\s*\/?><\/\1><[\w\W]+> resolveContexts = new Array( length );
3325 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < length; i++ ) {
3326 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
3327 <(\w+)\s*\/?><\/\1><[\w\W]+> resolveValues[ i ].promise()
3328 <(\w+)\s*\/?><\/\1><[\w\W]+> .done( updateFunc( i, resolveContexts, resolveValues ) )
3329 <(\w+)\s*\/?><\/\1><[\w\W]+> .fail( deferred.reject )
3330 <(\w+)\s*\/?><\/\1><[\w\W]+> .progress( updateFunc( i, progressContexts, progressValues ) );
3331 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3332 <(\w+)\s*\/?><\/\1><[\w\W]+> --remaining;
3333 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3334 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3335 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3336  
3337 <(\w+)\s*\/?><\/\1><[\w\W]+> // if we're not waiting on anything, resolve the master
3338 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !remaining ) {
3339 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.resolveWith( resolveContexts, resolveValues );
3340 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3341  
3342 <(\w+)\s*\/?><\/\1><[\w\W]+> return deferred.promise();
3343 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3344 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3345  
3346  
3347 <(\w+)\s*\/?><\/\1><[\w\W]+>// The deferred used on DOM ready
3348 <(\w+)\s*\/?><\/\1><[\w\W]+>var readyList;
3349  
3350 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.ready = function( fn ) {
3351 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add the callback
3352 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.ready.promise().done( fn );
3353  
3354 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3355 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3356  
3357 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3358 <(\w+)\s*\/?><\/\1><[\w\W]+> // Is the DOM ready to be used? Set to true once it occurs.
3359 <(\w+)\s*\/?><\/\1><[\w\W]+> isReady: false,
3360  
3361 <(\w+)\s*\/?><\/\1><[\w\W]+> // A counter to track how many items to wait for before
3362 <(\w+)\s*\/?><\/\1><[\w\W]+> // the ready event fires. See #6781
3363 <(\w+)\s*\/?><\/\1><[\w\W]+> readyWait: 1,
3364  
3365 <(\w+)\s*\/?><\/\1><[\w\W]+> // Hold (or release) the ready event
3366 <(\w+)\s*\/?><\/\1><[\w\W]+> holdReady: function( hold ) {
3367 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( hold ) {
3368 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.readyWait++;
3369 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3370 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.ready( true );
3371 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3372 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3373  
3374 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle when the DOM is ready
3375 <(\w+)\s*\/?><\/\1><[\w\W]+> ready: function( wait ) {
3376  
3377 <(\w+)\s*\/?><\/\1><[\w\W]+> // Abort if there are pending holds or we're already ready
3378 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
3379 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
3380 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3381  
3382 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remember that the DOM is ready
3383 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.isReady = true;
3384  
3385 <(\w+)\s*\/?><\/\1><[\w\W]+> // If a normal DOM Ready event fired, decrement, and wait if need be
3386 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( wait !== true && --jQuery.readyWait > 0 ) {
3387 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
3388 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3389  
3390 <(\w+)\s*\/?><\/\1><[\w\W]+> // If there are functions bound, to execute
3391 <(\w+)\s*\/?><\/\1><[\w\W]+> readyList.resolveWith( document, [ jQuery ] );
3392  
3393 <(\w+)\s*\/?><\/\1><[\w\W]+> // Trigger any bound ready events
3394 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.fn.triggerHandler ) {
3395 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( document ).triggerHandler( "ready" );
3396 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( document ).off( "ready" );
3397 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3398 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3399 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3400  
3401 <(\w+)\s*\/?><\/\1><[\w\W]+>/**
3402 <(\w+)\s*\/?><\/\1><[\w\W]+> * The ready event handler and self cleanup method
3403 <(\w+)\s*\/?><\/\1><[\w\W]+> */
3404 <(\w+)\s*\/?><\/\1><[\w\W]+>function completed() {
3405 <(\w+)\s*\/?><\/\1><[\w\W]+> document.removeEventListener( "DOMContentLoaded", completed, false );
3406 <(\w+)\s*\/?><\/\1><[\w\W]+> window.removeEventListener( "load", completed, false );
3407 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.ready();
3408 <(\w+)\s*\/?><\/\1><[\w\W]+>}
3409  
3410 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.ready.promise = function( obj ) {
3411 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !readyList ) {
3412  
3413 <(\w+)\s*\/?><\/\1><[\w\W]+> readyList = jQuery.Deferred();
3414  
3415 <(\w+)\s*\/?><\/\1><[\w\W]+> // Catch cases where $(document).ready() is called after the browser event has already occurred.
3416 <(\w+)\s*\/?><\/\1><[\w\W]+> // we once tried to use readyState "interactive" here, but it caused issues like the one
3417 <(\w+)\s*\/?><\/\1><[\w\W]+> // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
3418 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( document.readyState === "complete" ) {
3419 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle it asynchronously to allow scripts the opportunity to delay ready
3420 <(\w+)\s*\/?><\/\1><[\w\W]+> setTimeout( jQuery.ready );
3421  
3422 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3423  
3424 <(\w+)\s*\/?><\/\1><[\w\W]+> // Use the handy event callback
3425 <(\w+)\s*\/?><\/\1><[\w\W]+> document.addEventListener( "DOMContentLoaded", completed, false );
3426  
3427 <(\w+)\s*\/?><\/\1><[\w\W]+> // A fallback to window.onload, that will always work
3428 <(\w+)\s*\/?><\/\1><[\w\W]+> window.addEventListener( "load", completed, false );
3429 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3430 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3431 <(\w+)\s*\/?><\/\1><[\w\W]+> return readyList.promise( obj );
3432 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3433  
3434 <(\w+)\s*\/?><\/\1><[\w\W]+>// Kick off the DOM ready check even if the user does not
3435 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.ready.promise();
3436  
3437  
3438  
3439  
3440 <(\w+)\s*\/?><\/\1><[\w\W]+>// Multifunctional method to get and set values of a collection
3441 <(\w+)\s*\/?><\/\1><[\w\W]+>// The value/s can optionally be executed if it's a function
3442 <(\w+)\s*\/?><\/\1><[\w\W]+>var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
3443 <(\w+)\s*\/?><\/\1><[\w\W]+> var i = 0,
3444 <(\w+)\s*\/?><\/\1><[\w\W]+> len = elems.length,
3445 <(\w+)\s*\/?><\/\1><[\w\W]+> bulk = key == null;
3446  
3447 <(\w+)\s*\/?><\/\1><[\w\W]+> // Sets many values
3448 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.type( key ) === "object" ) {
3449 <(\w+)\s*\/?><\/\1><[\w\W]+> chainable = true;
3450 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( i in key ) {
3451 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
3452 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3453  
3454 <(\w+)\s*\/?><\/\1><[\w\W]+> // Sets one value
3455 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( value !== undefined ) {
3456 <(\w+)\s*\/?><\/\1><[\w\W]+> chainable = true;
3457  
3458 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !jQuery.isFunction( value ) ) {
3459 <(\w+)\s*\/?><\/\1><[\w\W]+> raw = true;
3460 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3461  
3462 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( bulk ) {
3463 <(\w+)\s*\/?><\/\1><[\w\W]+> // Bulk operations run against the entire set
3464 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( raw ) {
3465 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.call( elems, value );
3466 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = null;
3467  
3468 <(\w+)\s*\/?><\/\1><[\w\W]+> // ...except when executing function values
3469 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3470 <(\w+)\s*\/?><\/\1><[\w\W]+> bulk = fn;
3471 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = function( elem, key, value ) {
3472 <(\w+)\s*\/?><\/\1><[\w\W]+> return bulk.call( jQuery( elem ), value );
3473 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3474 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3475 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3476  
3477 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn ) {
3478 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < len; i++ ) {
3479 <(\w+)\s*\/?><\/\1><[\w\W]+> fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
3480 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3481 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3482 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3483  
3484 <(\w+)\s*\/?><\/\1><[\w\W]+> return chainable ?
3485 <(\w+)\s*\/?><\/\1><[\w\W]+> elems :
3486  
3487 <(\w+)\s*\/?><\/\1><[\w\W]+> // Gets
3488 <(\w+)\s*\/?><\/\1><[\w\W]+> bulk ?
3489 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.call( elems ) :
3490 <(\w+)\s*\/?><\/\1><[\w\W]+> len ? fn( elems[0], key ) : emptyGet;
3491 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3492  
3493  
3494 <(\w+)\s*\/?><\/\1><[\w\W]+>/**
3495 <(\w+)\s*\/?><\/\1><[\w\W]+> * Determines whether an object can have data
3496 <(\w+)\s*\/?><\/\1><[\w\W]+> */
3497 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.acceptData = function( owner ) {
3498 <(\w+)\s*\/?><\/\1><[\w\W]+> // Accepts only:
3499 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Node
3500 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Node.ELEMENT_NODE
3501 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Node.DOCUMENT_NODE
3502 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Object
3503 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Any
3504 <(\w+)\s*\/?><\/\1><[\w\W]+> /* jshint -W018 */
3505 <(\w+)\s*\/?><\/\1><[\w\W]+> return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
3506 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3507  
3508  
3509 <(\w+)\s*\/?><\/\1><[\w\W]+>function Data() {
3510 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Android < 4,
3511 <(\w+)\s*\/?><\/\1><[\w\W]+> // Old WebKit does not have Object.preventExtensions/freeze method,
3512 <(\w+)\s*\/?><\/\1><[\w\W]+> // return new empty object instead with no [[set]] accessor
3513 <(\w+)\s*\/?><\/\1><[\w\W]+> Object.defineProperty( this.cache = {}, 0, {
3514 <(\w+)\s*\/?><\/\1><[\w\W]+> get: function() {
3515 <(\w+)\s*\/?><\/\1><[\w\W]+> return {};
3516 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3517 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3518  
3519 <(\w+)\s*\/?><\/\1><[\w\W]+> this.expando = jQuery.expando + Math.random();
3520 <(\w+)\s*\/?><\/\1><[\w\W]+>}
3521  
3522 <(\w+)\s*\/?><\/\1><[\w\W]+>Data.uid = 1;
3523 <(\w+)\s*\/?><\/\1><[\w\W]+>Data.accepts = jQuery.acceptData;
3524  
3525 <(\w+)\s*\/?><\/\1><[\w\W]+>Data.prototype = {
3526 <(\w+)\s*\/?><\/\1><[\w\W]+> key: function( owner ) {
3527 <(\w+)\s*\/?><\/\1><[\w\W]+> // We can accept data for non-element nodes in modern browsers,
3528 <(\w+)\s*\/?><\/\1><[\w\W]+> // but we should not, see #8335.
3529 <(\w+)\s*\/?><\/\1><[\w\W]+> // Always return the key for a frozen object.
3530 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !Data.accepts( owner ) ) {
3531 <(\w+)\s*\/?><\/\1><[\w\W]+> return 0;
3532 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3533  
3534 <(\w+)\s*\/?><\/\1><[\w\W]+> var descriptor = {},
3535 <(\w+)\s*\/?><\/\1><[\w\W]+> // Check if the owner object already has a cache key
3536 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = owner[ this.expando ];
3537  
3538 <(\w+)\s*\/?><\/\1><[\w\W]+> // If not, create one
3539 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !unlock ) {
3540 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = Data.uid++;
3541  
3542 <(\w+)\s*\/?><\/\1><[\w\W]+> // Secure it in a non-enumerable, non-writable property
3543 <(\w+)\s*\/?><\/\1><[\w\W]+> try {
3544 <(\w+)\s*\/?><\/\1><[\w\W]+> descriptor[ this.expando ] = { value: unlock };
3545 <(\w+)\s*\/?><\/\1><[\w\W]+> Object.defineProperties( owner, descriptor );
3546  
3547 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Android < 4
3548 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fallback to a less secure definition
3549 <(\w+)\s*\/?><\/\1><[\w\W]+> } catch ( e ) {
3550 <(\w+)\s*\/?><\/\1><[\w\W]+> descriptor[ this.expando ] = unlock;
3551 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( owner, descriptor );
3552 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3553 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3554  
3555 <(\w+)\s*\/?><\/\1><[\w\W]+> // Ensure the cache object
3556 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !this.cache[ unlock ] ) {
3557 <(\w+)\s*\/?><\/\1><[\w\W]+> this.cache[ unlock ] = {};
3558 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3559  
3560 <(\w+)\s*\/?><\/\1><[\w\W]+> return unlock;
3561 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3562 <(\w+)\s*\/?><\/\1><[\w\W]+> set: function( owner, data, value ) {
3563 <(\w+)\s*\/?><\/\1><[\w\W]+> var prop,
3564 <(\w+)\s*\/?><\/\1><[\w\W]+> // There may be an unlock assigned to this node,
3565 <(\w+)\s*\/?><\/\1><[\w\W]+> // if there is no entry for this "owner", create one inline
3566 <(\w+)\s*\/?><\/\1><[\w\W]+> // and set the unlock as though an owner entry had always existed
3567 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = this.key( owner ),
3568 <(\w+)\s*\/?><\/\1><[\w\W]+> cache = this.cache[ unlock ];
3569  
3570 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle: [ owner, key, value ] args
3571 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof data === "string" ) {
3572 <(\w+)\s*\/?><\/\1><[\w\W]+> cache[ data ] = value;
3573  
3574 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle: [ owner, { properties } ] args
3575 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3576 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fresh assignments by object are shallow copied
3577 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isEmptyObject( cache ) ) {
3578 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( this.cache[ unlock ], data );
3579 <(\w+)\s*\/?><\/\1><[\w\W]+> // Otherwise, copy the properties one-by-one to the cache object
3580 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3581 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( prop in data ) {
3582 <(\w+)\s*\/?><\/\1><[\w\W]+> cache[ prop ] = data[ prop ];
3583 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3584 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3585 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3586 <(\w+)\s*\/?><\/\1><[\w\W]+> return cache;
3587 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3588 <(\w+)\s*\/?><\/\1><[\w\W]+> get: function( owner, key ) {
3589 <(\w+)\s*\/?><\/\1><[\w\W]+> // Either a valid cache is found, or will be created.
3590 <(\w+)\s*\/?><\/\1><[\w\W]+> // New caches will be created and the unlock returned,
3591 <(\w+)\s*\/?><\/\1><[\w\W]+> // allowing direct access to the newly created
3592 <(\w+)\s*\/?><\/\1><[\w\W]+> // empty data object. A valid owner object must be provided.
3593 <(\w+)\s*\/?><\/\1><[\w\W]+> var cache = this.cache[ this.key( owner ) ];
3594  
3595 <(\w+)\s*\/?><\/\1><[\w\W]+> return key === undefined ?
3596 <(\w+)\s*\/?><\/\1><[\w\W]+> cache : cache[ key ];
3597 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3598 <(\w+)\s*\/?><\/\1><[\w\W]+> access: function( owner, key, value ) {
3599 <(\w+)\s*\/?><\/\1><[\w\W]+> var stored;
3600 <(\w+)\s*\/?><\/\1><[\w\W]+> // In cases where either:
3601 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3602 <(\w+)\s*\/?><\/\1><[\w\W]+> // 1. No key was specified
3603 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2. A string key was specified, but no value provided
3604 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3605 <(\w+)\s*\/?><\/\1><[\w\W]+> // Take the "read" path and allow the get method to determine
3606 <(\w+)\s*\/?><\/\1><[\w\W]+> // which value to return, respectively either:
3607 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3608 <(\w+)\s*\/?><\/\1><[\w\W]+> // 1. The entire cache object
3609 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2. The data stored at the key
3610 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3611 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key === undefined ||
3612 <(\w+)\s*\/?><\/\1><[\w\W]+> ((key && typeof key === "string") && value === undefined) ) {
3613  
3614 <(\w+)\s*\/?><\/\1><[\w\W]+> stored = this.get( owner, key );
3615  
3616 <(\w+)\s*\/?><\/\1><[\w\W]+> return stored !== undefined ?
3617 <(\w+)\s*\/?><\/\1><[\w\W]+> stored : this.get( owner, jQuery.camelCase(key) );
3618 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3619  
3620 <(\w+)\s*\/?><\/\1><[\w\W]+> // [*]When the key is not a string, or both a key and value
3621 <(\w+)\s*\/?><\/\1><[\w\W]+> // are specified, set or extend (existing objects) with either:
3622 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3623 <(\w+)\s*\/?><\/\1><[\w\W]+> // 1. An object of properties
3624 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2. A key and value
3625 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3626 <(\w+)\s*\/?><\/\1><[\w\W]+> this.set( owner, key, value );
3627  
3628 <(\w+)\s*\/?><\/\1><[\w\W]+> // Since the "set" path can have two possible entry points
3629 <(\w+)\s*\/?><\/\1><[\w\W]+> // return the expected data based on which path was taken[*]
3630 <(\w+)\s*\/?><\/\1><[\w\W]+> return value !== undefined ? value : key;
3631 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3632 <(\w+)\s*\/?><\/\1><[\w\W]+> remove: function( owner, key ) {
3633 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, name, camel,
3634 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = this.key( owner ),
3635 <(\w+)\s*\/?><\/\1><[\w\W]+> cache = this.cache[ unlock ];
3636  
3637 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key === undefined ) {
3638 <(\w+)\s*\/?><\/\1><[\w\W]+> this.cache[ unlock ] = {};
3639  
3640 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3641 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support array or space separated string of keys
3642 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isArray( key ) ) {
3643 <(\w+)\s*\/?><\/\1><[\w\W]+> // If "name" is an array of keys...
3644 <(\w+)\s*\/?><\/\1><[\w\W]+> // When data is initially created, via ("key", "val") signature,
3645 <(\w+)\s*\/?><\/\1><[\w\W]+> // keys will be converted to camelCase.
3646 <(\w+)\s*\/?><\/\1><[\w\W]+> // Since there is no way to tell _how_ a key was added, remove
3647 <(\w+)\s*\/?><\/\1><[\w\W]+> // both plain key and camelCase key. #12786
3648 <(\w+)\s*\/?><\/\1><[\w\W]+> // This will only penalize the array argument path.
3649 <(\w+)\s*\/?><\/\1><[\w\W]+> name = key.concat( key.map( jQuery.camelCase ) );
3650 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3651 <(\w+)\s*\/?><\/\1><[\w\W]+> camel = jQuery.camelCase( key );
3652 <(\w+)\s*\/?><\/\1><[\w\W]+> // Try the string as a key before any manipulation
3653 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key in cache ) {
3654 <(\w+)\s*\/?><\/\1><[\w\W]+> name = [ key, camel ];
3655 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3656 <(\w+)\s*\/?><\/\1><[\w\W]+> // If a key with the spaces exists, use it.
3657 <(\w+)\s*\/?><\/\1><[\w\W]+> // Otherwise, create an array by matching non-whitespace
3658 <(\w+)\s*\/?><\/\1><[\w\W]+> name = camel;
3659 <(\w+)\s*\/?><\/\1><[\w\W]+> name = name in cache ?
3660 <(\w+)\s*\/?><\/\1><[\w\W]+> [ name ] : ( name.match( rnotwhite ) || [] );
3661 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3662 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3663  
3664 <(\w+)\s*\/?><\/\1><[\w\W]+> i = name.length;
3665 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
3666 <(\w+)\s*\/?><\/\1><[\w\W]+> delete cache[ name[ i ] ];
3667 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3668 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3669 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3670 <(\w+)\s*\/?><\/\1><[\w\W]+> hasData: function( owner ) {
3671 <(\w+)\s*\/?><\/\1><[\w\W]+> return !jQuery.isEmptyObject(
3672 <(\w+)\s*\/?><\/\1><[\w\W]+> this.cache[ owner[ this.expando ] ] || {}
3673 <(\w+)\s*\/?><\/\1><[\w\W]+> );
3674 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3675 <(\w+)\s*\/?><\/\1><[\w\W]+> discard: function( owner ) {
3676 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( owner[ this.expando ] ) {
3677 <(\w+)\s*\/?><\/\1><[\w\W]+> delete this.cache[ owner[ this.expando ] ];
3678 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3679 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3680 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3681 <(\w+)\s*\/?><\/\1><[\w\W]+>var data_priv = new Data();
3682  
3683 <(\w+)\s*\/?><\/\1><[\w\W]+>var data_user = new Data();
3684  
3685  
3686  
3687 <(\w+)\s*\/?><\/\1><[\w\W]+>/*
3688 <(\w+)\s*\/?><\/\1><[\w\W]+> Implementation Summary
3689  
3690 <(\w+)\s*\/?><\/\1><[\w\W]+> 1. Enforce API surface and semantic compatibility with 1.9.x branch
3691 <(\w+)\s*\/?><\/\1><[\w\W]+> 2. Improve the module's maintainability by reducing the storage
3692 <(\w+)\s*\/?><\/\1><[\w\W]+> paths to a single mechanism.
3693 <(\w+)\s*\/?><\/\1><[\w\W]+> 3. Use the same single mechanism to support "private" and "user" data.
3694 <(\w+)\s*\/?><\/\1><[\w\W]+> 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
3695 <(\w+)\s*\/?><\/\1><[\w\W]+> 5. Avoid exposing implementation details on user objects (eg. expando properties)
3696 <(\w+)\s*\/?><\/\1><[\w\W]+> 6. Provide a clear path for implementation upgrade to WeakMap in 2014
3697 <(\w+)\s*\/?><\/\1><[\w\W]+>*/
3698 <(\w+)\s*\/?><\/\1><[\w\W]+>var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
3699 <(\w+)\s*\/?><\/\1><[\w\W]+> rmultiDash = /([A-Z])/g;
3700  
3701 <(\w+)\s*\/?><\/\1><[\w\W]+>function dataAttr( elem, key, data ) {
3702 <(\w+)\s*\/?><\/\1><[\w\W]+> var name;
3703  
3704 <(\w+)\s*\/?><\/\1><[\w\W]+> // If nothing was found internally, try to fetch any
3705 <(\w+)\s*\/?><\/\1><[\w\W]+> // data from the HTML5 data-* attribute
3706 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data === undefined && elem.nodeType === 1 ) {
3707 <(\w+)\s*\/?><\/\1><[\w\W]+> name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
3708 <(\w+)\s*\/?><\/\1><[\w\W]+> data = elem.getAttribute( name );
3709  
3710 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof data === "string" ) {
3711 <(\w+)\s*\/?><\/\1><[\w\W]+> try {
3712 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data === "true" ? true :
3713 <(\w+)\s*\/?><\/\1><[\w\W]+> data === "false" ? false :
3714 <(\w+)\s*\/?><\/\1><[\w\W]+> data === "null" ? null :
3715 <(\w+)\s*\/?><\/\1><[\w\W]+> // Only convert to a number if it doesn't change the string
3716 <(\w+)\s*\/?><\/\1><[\w\W]+> +data + "" === data ? +data :
3717 <(\w+)\s*\/?><\/\1><[\w\W]+> rbrace.test( data ) ? jQuery.parseJSON( data ) :
3718 <(\w+)\s*\/?><\/\1><[\w\W]+> data;
3719 <(\w+)\s*\/?><\/\1><[\w\W]+> } catch( e ) {}
3720  
3721 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make sure we set the data so it isn't changed later
3722 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( elem, key, data );
3723 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3724 <(\w+)\s*\/?><\/\1><[\w\W]+> data = undefined;
3725 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3726 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3727 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3728 <(\w+)\s*\/?><\/\1><[\w\W]+>}
3729  
3730 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3731 <(\w+)\s*\/?><\/\1><[\w\W]+> hasData: function( elem ) {
3732 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_user.hasData( elem ) || data_priv.hasData( elem );
3733 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3734  
3735 <(\w+)\s*\/?><\/\1><[\w\W]+> data: function( elem, name, data ) {
3736 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_user.access( elem, name, data );
3737 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3738  
3739 <(\w+)\s*\/?><\/\1><[\w\W]+> removeData: function( elem, name ) {
3740 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.remove( elem, name );
3741 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3742  
3743 <(\w+)\s*\/?><\/\1><[\w\W]+> // TODO: Now that all calls to _data and _removeData have been replaced
3744 <(\w+)\s*\/?><\/\1><[\w\W]+> // with direct calls to data_priv methods, these can be deprecated.
3745 <(\w+)\s*\/?><\/\1><[\w\W]+> _data: function( elem, name, data ) {
3746 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_priv.access( elem, name, data );
3747 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3748  
3749 <(\w+)\s*\/?><\/\1><[\w\W]+> _removeData: function( elem, name ) {
3750 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( elem, name );
3751 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3752 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3753  
3754 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
3755 <(\w+)\s*\/?><\/\1><[\w\W]+> data: function( key, value ) {
3756 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, name, data,
3757 <(\w+)\s*\/?><\/\1><[\w\W]+> elem = this[ 0 ],
3758 <(\w+)\s*\/?><\/\1><[\w\W]+> attrs = elem && elem.attributes;
3759  
3760 <(\w+)\s*\/?><\/\1><[\w\W]+> // Gets all values
3761 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key === undefined ) {
3762 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this.length ) {
3763 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data_user.get( elem );
3764  
3765 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) {
3766 <(\w+)\s*\/?><\/\1><[\w\W]+> i = attrs.length;
3767 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
3768  
3769 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: IE11+
3770 <(\w+)\s*\/?><\/\1><[\w\W]+> // The attrs elements can be null (#14894)
3771 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( attrs[ i ] ) {
3772 <(\w+)\s*\/?><\/\1><[\w\W]+> name = attrs[ i ].name;
3773 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( name.indexOf( "data-" ) === 0 ) {
3774 <(\w+)\s*\/?><\/\1><[\w\W]+> name = jQuery.camelCase( name.slice(5) );
3775 <(\w+)\s*\/?><\/\1><[\w\W]+> dataAttr( elem, name, data[ name ] );
3776 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3777 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3778 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3779 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.set( elem, "hasDataAttrs", true );
3780 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3781 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3782  
3783 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3784 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3785  
3786 <(\w+)\s*\/?><\/\1><[\w\W]+> // Sets multiple values
3787 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof key === "object" ) {
3788 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
3789 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( this, key );
3790 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3791 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3792  
3793 <(\w+)\s*\/?><\/\1><[\w\W]+> return access( this, function( value ) {
3794 <(\w+)\s*\/?><\/\1><[\w\W]+> var data,
3795 <(\w+)\s*\/?><\/\1><[\w\W]+> camelKey = jQuery.camelCase( key );
3796  
3797 <(\w+)\s*\/?><\/\1><[\w\W]+> // The calling jQuery object (element matches) is not empty
3798 <(\w+)\s*\/?><\/\1><[\w\W]+> // (and therefore has an element appears at this[ 0 ]) and the
3799 <(\w+)\s*\/?><\/\1><[\w\W]+> // `value` parameter was not undefined. An empty jQuery object
3800 <(\w+)\s*\/?><\/\1><[\w\W]+> // will result in `undefined` for elem = this[ 0 ] which will
3801 <(\w+)\s*\/?><\/\1><[\w\W]+> // throw an exception if an attempt to read a data cache is made.
3802 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem && value === undefined ) {
3803 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attempt to get data from the cache
3804 <(\w+)\s*\/?><\/\1><[\w\W]+> // with the key as-is
3805 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data_user.get( elem, key );
3806 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data !== undefined ) {
3807 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3808 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3809  
3810 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attempt to get data from the cache
3811 <(\w+)\s*\/?><\/\1><[\w\W]+> // with the key camelized
3812 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data_user.get( elem, camelKey );
3813 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data !== undefined ) {
3814 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3815 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3816  
3817 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attempt to "discover" the data in
3818 <(\w+)\s*\/?><\/\1><[\w\W]+> // HTML5 custom data-* attrs
3819 <(\w+)\s*\/?><\/\1><[\w\W]+> data = dataAttr( elem, camelKey, undefined );
3820 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data !== undefined ) {
3821 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3822 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3823  
3824 <(\w+)\s*\/?><\/\1><[\w\W]+> // We tried really hard, but the data doesn't exist.
3825 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
3826 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3827  
3828 <(\w+)\s*\/?><\/\1><[\w\W]+> // Set the data...
3829 <(\w+)\s*\/?><\/\1><[\w\W]+> this.each(function() {
3830 <(\w+)\s*\/?><\/\1><[\w\W]+> // First, attempt to store a copy or reference of any
3831 <(\w+)\s*\/?><\/\1><[\w\W]+> // data that might've been store with a camelCased key.
3832 <(\w+)\s*\/?><\/\1><[\w\W]+> var data = data_user.get( this, camelKey );
3833  
3834 <(\w+)\s*\/?><\/\1><[\w\W]+> // For HTML5 data-* attribute interop, we have to
3835 <(\w+)\s*\/?><\/\1><[\w\W]+> // store property names with dashes in a camelCase form.
3836 <(\w+)\s*\/?><\/\1><[\w\W]+> // This might not apply to all properties...*
3837 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( this, camelKey, value );
3838  
3839 <(\w+)\s*\/?><\/\1><[\w\W]+> // *... In the case of properties that might _actually_
3840 <(\w+)\s*\/?><\/\1><[\w\W]+> // have dashes, we need to also store a copy of that
3841 <(\w+)\s*\/?><\/\1><[\w\W]+> // unchanged property.
3842 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key.indexOf("-") !== -1 && data !== undefined ) {
3843 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( this, key, value );
3844 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3845 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3846 <(\w+)\s*\/?><\/\1><[\w\W]+> }, null, value, arguments.length > 1, null, true );
3847 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3848  
3849 <(\w+)\s*\/?><\/\1><[\w\W]+> removeData: function( key ) {
3850 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
3851 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.remove( this, key );
3852 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3853 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3854 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3855  
3856  
3857 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3858 <(\w+)\s*\/?><\/\1><[\w\W]+> queue: function( elem, type, data ) {
3859 <(\w+)\s*\/?><\/\1><[\w\W]+> var queue;
3860  
3861 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem ) {
3862 <(\w+)\s*\/?><\/\1><[\w\W]+> type = ( type || "fx" ) + "queue";
3863 <(\w+)\s*\/?><\/\1><[\w\W]+> queue = data_priv.get( elem, type );
3864  
3865 <(\w+)\s*\/?><\/\1><[\w\W]+> // Speed up dequeue by getting out quickly if this is just a lookup
3866 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data ) {
3867 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !queue || jQuery.isArray( data ) ) {
3868 <(\w+)\s*\/?><\/\1><[\w\W]+> queue = data_priv.access( elem, type, jQuery.makeArray(data) );
3869 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3870 <(\w+)\s*\/?><\/\1><[\w\W]+> queue.push( data );
3871 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3872 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3873 <(\w+)\s*\/?><\/\1><[\w\W]+> return queue || [];
3874 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3875 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3876  
3877 <(\w+)\s*\/?><\/\1><[\w\W]+> dequeue: function( elem, type ) {
3878 <(\w+)\s*\/?><\/\1><[\w\W]+> type = type || "fx";
3879  
3880 <(\w+)\s*\/?><\/\1><[\w\W]+> var queue = jQuery.queue( elem, type ),
3881 <(\w+)\s*\/?><\/\1><[\w\W]+> startLength = queue.length,
3882 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = queue.shift(),
3883 <(\w+)\s*\/?><\/\1><[\w\W]+> hooks = jQuery._queueHooks( elem, type ),
3884 <(\w+)\s*\/?><\/\1><[\w\W]+> next = function() {
3885 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.dequeue( elem, type );
3886 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3887  
3888 <(\w+)\s*\/?><\/\1><[\w\W]+> // If the fx queue is dequeued, always remove the progress sentinel
3889 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn === "inprogress" ) {
3890 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = queue.shift();
3891 <(\w+)\s*\/?><\/\1><[\w\W]+> startLength--;
3892 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3893  
3894 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn ) {
3895  
3896 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add a progress sentinel to prevent the fx queue from being
3897 <(\w+)\s*\/?><\/\1><[\w\W]+> // automatically dequeued
3898 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type === "fx" ) {
3899 <(\w+)\s*\/?><\/\1><[\w\W]+> queue.unshift( "inprogress" );
3900 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3901  
3902 <(\w+)\s*\/?><\/\1><[\w\W]+> // clear up the last queue stop function
3903 <(\w+)\s*\/?><\/\1><[\w\W]+> delete hooks.stop;
3904 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.call( elem, next, hooks );
3905 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3906  
3907 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !startLength && hooks ) {
3908 <(\w+)\s*\/?><\/\1><[\w\W]+> hooks.empty.fire();
3909 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3910 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3911  
3912 <(\w+)\s*\/?><\/\1><[\w\W]+> // not intended for public consumption - generates a queueHooks object, or returns the current one
3913 <(\w+)\s*\/?><\/\1><[\w\W]+> _queueHooks: function( elem, type ) {
3914 <(\w+)\s*\/?><\/\1><[\w\W]+> var key = type + "queueHooks";
3915 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_priv.get( elem, key ) || data_priv.access( elem, key, {
3916 <(\w+)\s*\/?><\/\1><[\w\W]+> empty: jQuery.Callbacks("once memory").add(function() {
3917 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( elem, [ type + "queue", key ] );
3918 <(\w+)\s*\/?><\/\1><[\w\W]+> })
3919 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3920 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3921 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3922  
3923 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
3924 <(\w+)\s*\/?><\/\1><[\w\W]+> queue: function( type, data ) {
3925 <(\w+)\s*\/?><\/\1><[\w\W]+> var setter = 2;
3926  
3927 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof type !== "string" ) {
3928 <(\w+)\s*\/?><\/\1><[\w\W]+> data = type;
3929 <(\w+)\s*\/?><\/\1><[\w\W]+> type = "fx";
3930 <(\w+)\s*\/?><\/\1><[\w\W]+> setter--;
3931 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3932  
3933 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( arguments.length < setter ) {
3934 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.queue( this[0], type );
3935 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3936  
3937 <(\w+)\s*\/?><\/\1><[\w\W]+> return data === undefined ?
3938 <(\w+)\s*\/?><\/\1><[\w\W]+> this :
3939 <(\w+)\s*\/?><\/\1><[\w\W]+> this.each(function() {
3940 <(\w+)\s*\/?><\/\1><[\w\W]+> var queue = jQuery.queue( this, type, data );
3941  
3942 <(\w+)\s*\/?><\/\1><[\w\W]+> // ensure a hooks for this queue
3943 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery._queueHooks( this, type );
3944  
3945 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type === "fx" && queue[0] !== "inprogress" ) {
3946 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.dequeue( this, type );
3947 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3948 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3949 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3950 <(\w+)\s*\/?><\/\1><[\w\W]+> dequeue: function( type ) {
3951 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
3952 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.dequeue( this, type );
3953 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3954 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3955 <(\w+)\s*\/?><\/\1><[\w\W]+> clearQueue: function( type ) {
3956 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.queue( type || "fx", [] );
3957 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3958 <(\w+)\s*\/?><\/\1><[\w\W]+> // Get a promise resolved when queues of a certain type
3959 <(\w+)\s*\/?><\/\1><[\w\W]+> // are emptied (fx is the type by default)
3960 <(\w+)\s*\/?><\/\1><[\w\W]+> promise: function( type, obj ) {
3961 <(\w+)\s*\/?><\/\1><[\w\W]+> var tmp,
3962 <(\w+)\s*\/?><\/\1><[\w\W]+> count = 1,
3963 <(\w+)\s*\/?><\/\1><[\w\W]+> defer = jQuery.Deferred(),
3964 <(\w+)\s*\/?><\/\1><[\w\W]+> elements = this,
3965 <(\w+)\s*\/?><\/\1><[\w\W]+> i = this.length,
3966 <(\w+)\s*\/?><\/\1><[\w\W]+> resolve = function() {
3967 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !( --count ) ) {
3968 <(\w+)\s*\/?><\/\1><[\w\W]+> defer.resolveWith( elements, [ elements ] );
3969 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3970 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3971  
3972 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof type !== "string" ) {
3973 <(\w+)\s*\/?><\/\1><[\w\W]+> obj = type;
3974 <(\w+)\s*\/?><\/\1><[\w\W]+> type = undefined;
3975 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3976 <(\w+)\s*\/?><\/\1><[\w\W]+> type = type || "fx";
3977  
3978 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
3979 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = data_priv.get( elements[ i ], type + "queueHooks" );
3980 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp && tmp.empty ) {
3981 <(\w+)\s*\/?><\/\1><[\w\W]+> count++;
3982 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp.empty.add( resolve );
3983 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3984 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3985 <(\w+)\s*\/?><\/\1><[\w\W]+> resolve();
3986 <(\w+)\s*\/?><\/\1><[\w\W]+> return defer.promise( obj );
3987 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3988 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3989 <(\w+)\s*\/?><\/\1><[\w\W]+>var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3990  
3991 <(\w+)\s*\/?><\/\1><[\w\W]+>var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
3992  
3993 <(\w+)\s*\/?><\/\1><[\w\W]+>var isHidden = function( elem, el ) {
3994 <(\w+)\s*\/?><\/\1><[\w\W]+> // isHidden might be called from jQuery#filter function;
3995 <(\w+)\s*\/?><\/\1><[\w\W]+> // in that case, element will be second argument
3996 <(\w+)\s*\/?><\/\1><[\w\W]+> elem = el || elem;
3997 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
3998 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3999  
4000 <(\w+)\s*\/?><\/\1><[\w\W]+>var rcheckableType = (/^(?:checkbox|radio)$/i);
4001  
4002  
4003  
4004 <(\w+)\s*\/?><\/\1><[\w\W]+>(function() {
4005 <(\w+)\s*\/?><\/\1><[\w\W]+> var fragment = document.createDocumentFragment(),
4006 <(\w+)\s*\/?><\/\1><[\w\W]+> div = fragment.appendChild( document.createElement( "div" ) ),
4007 <(\w+)\s*\/?><\/\1><[\w\W]+> input = document.createElement( "input" );
4008  
4009 <(\w+)\s*\/?><\/\1><[\w\W]+> // #11217 - WebKit loses check when the name is after the checked attribute
4010 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Windows Web Apps (WWA)
4011 <(\w+)\s*\/?><\/\1><[\w\W]+> // `name` and `type` need .setAttribute for WWA
4012 <(\w+)\s*\/?><\/\1><[\w\W]+> input.setAttribute( "type", "radio" );
4013 <(\w+)\s*\/?><\/\1><[\w\W]+> input.setAttribute( "checked", "checked" );
4014 <(\w+)\s*\/?><\/\1><[\w\W]+> input.setAttribute( "name", "t" );
4015  
4016 <(\w+)\s*\/?><\/\1><[\w\W]+> div.appendChild( input );
4017  
4018 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3
4019 <(\w+)\s*\/?><\/\1><[\w\W]+> // old WebKit doesn't clone checked state correctly in fragments
4020 <(\w+)\s*\/?><\/\1><[\w\W]+> support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
4021  
4022 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make sure textarea (and checkbox) defaultValue is properly cloned
4023 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: IE9-IE11+
4024 <(\w+)\s*\/?><\/\1><[\w\W]+> div.innerHTML = "<textarea>x</textarea>";
4025 <(\w+)\s*\/?><\/\1><[\w\W]+> support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
4026 <(\w+)\s*\/?><\/\1><[\w\W]+>})();
4027 <(\w+)\s*\/?><\/\1><[\w\W]+>var strundefined = typeof undefined;
4028  
4029  
4030  
4031 <(\w+)\s*\/?><\/\1><[\w\W]+>support.focusinBubbles = "onfocusin" in window;
4032  
4033  
4034 <(\w+)\s*\/?><\/\1><[\w\W]+>var
4035 <(\w+)\s*\/?><\/\1><[\w\W]+> rkeyEvent = /^key/,
4036 <(\w+)\s*\/?><\/\1><[\w\W]+> rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,
4037 <(\w+)\s*\/?><\/\1><[\w\W]+> rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
4038 <(\w+)\s*\/?><\/\1><[\w\W]+> rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
4039  
4040 <(\w+)\s*\/?><\/\1><[\w\W]+>function returnTrue() {
4041 <(\w+)\s*\/?><\/\1><[\w\W]+> return true;
4042 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4043  
4044 <(\w+)\s*\/?><\/\1><[\w\W]+>function returnFalse() {
4045 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4046 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4047  
4048 <(\w+)\s*\/?><\/\1><[\w\W]+>function safeActiveElement() {
4049 <(\w+)\s*\/?><\/\1><[\w\W]+> try {
4050 <(\w+)\s*\/?><\/\1><[\w\W]+> return document.activeElement;
4051 <(\w+)\s*\/?><\/\1><[\w\W]+> } catch ( err ) { }
4052 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4053  
4054 <(\w+)\s*\/?><\/\1><[\w\W]+>/*
4055 <(\w+)\s*\/?><\/\1><[\w\W]+> * Helper functions for managing events -- not part of the public interface.
4056 <(\w+)\s*\/?><\/\1><[\w\W]+> * Props to Dean Edwards' addEvent library for many of the ideas.
4057 <(\w+)\s*\/?><\/\1><[\w\W]+> */
4058 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.event = {
4059  
4060 <(\w+)\s*\/?><\/\1><[\w\W]+> global: {},
4061  
4062 <(\w+)\s*\/?><\/\1><[\w\W]+> add: function( elem, types, handler, data, selector ) {
4063  
4064 <(\w+)\s*\/?><\/\1><[\w\W]+> var handleObjIn, eventHandle, tmp,
4065 <(\w+)\s*\/?><\/\1><[\w\W]+> events, t, handleObj,
4066 <(\w+)\s*\/?><\/\1><[\w\W]+> special, handlers, type, namespaces, origType,
4067 <(\w+)\s*\/?><\/\1><[\w\W]+> elemData = data_priv.get( elem );
4068  
4069 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't attach events to noData or text/comment nodes (but allow plain objects)
4070 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !elemData ) {
4071 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4072 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4073  
4074 <(\w+)\s*\/?><\/\1><[\w\W]+> // Caller can pass in an object of custom data in lieu of the handler
4075 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handler.handler ) {
4076 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObjIn = handler;
4077 <(\w+)\s*\/?><\/\1><[\w\W]+> handler = handleObjIn.handler;
4078 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = handleObjIn.selector;
4079 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4080  
4081 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make sure that the handler has a unique ID, used to find/remove it later
4082 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !handler.guid ) {
4083 <(\w+)\s*\/?><\/\1><[\w\W]+> handler.guid = jQuery.guid++;
4084 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4085  
4086 <(\w+)\s*\/?><\/\1><[\w\W]+> // Init the element's event structure and main handler, if this is the first
4087 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(events = elemData.events) ) {
4088 <(\w+)\s*\/?><\/\1><[\w\W]+> events = elemData.events = {};
4089 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4090 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(eventHandle = elemData.handle) ) {
4091 <(\w+)\s*\/?><\/\1><[\w\W]+> eventHandle = elemData.handle = function( e ) {
4092 <(\w+)\s*\/?><\/\1><[\w\W]+> // Discard the second event of a jQuery.event.trigger() and
4093 <(\w+)\s*\/?><\/\1><[\w\W]+> // when an event is called after a page has unloaded
4094 <(\w+)\s*\/?><\/\1><[\w\W]+> return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ?
4095 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.dispatch.apply( elem, arguments ) : undefined;
4096 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4097 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4098  
4099 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle multiple events separated by a space
4100 <(\w+)\s*\/?><\/\1><[\w\W]+> types = ( types || "" ).match( rnotwhite ) || [ "" ];
4101 <(\w+)\s*\/?><\/\1><[\w\W]+> t = types.length;
4102 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( t-- ) {
4103 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = rtypenamespace.exec( types[t] ) || [];
4104 <(\w+)\s*\/?><\/\1><[\w\W]+> type = origType = tmp[1];
4105 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = ( tmp[2] || "" ).split( "." ).sort();
4106  
4107 <(\w+)\s*\/?><\/\1><[\w\W]+> // There *must* be a type, no attaching namespace-only handlers
4108 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !type ) {
4109 <(\w+)\s*\/?><\/\1><[\w\W]+> continue;
4110 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4111  
4112 <(\w+)\s*\/?><\/\1><[\w\W]+> // If event changes its type, use the special event handlers for the changed type
4113 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4114  
4115 <(\w+)\s*\/?><\/\1><[\w\W]+> // If selector defined, determine special event api type, otherwise given type
4116 <(\w+)\s*\/?><\/\1><[\w\W]+> type = ( selector ? special.delegateType : special.bindType ) || type;
4117  
4118 <(\w+)\s*\/?><\/\1><[\w\W]+> // Update special based on newly reset type
4119 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4120  
4121 <(\w+)\s*\/?><\/\1><[\w\W]+> // handleObj is passed to all event handlers
4122 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = jQuery.extend({
4123 <(\w+)\s*\/?><\/\1><[\w\W]+> type: type,
4124 <(\w+)\s*\/?><\/\1><[\w\W]+> origType: origType,
4125 <(\w+)\s*\/?><\/\1><[\w\W]+> data: data,
4126 <(\w+)\s*\/?><\/\1><[\w\W]+> handler: handler,
4127 <(\w+)\s*\/?><\/\1><[\w\W]+> guid: handler.guid,
4128 <(\w+)\s*\/?><\/\1><[\w\W]+> selector: selector,
4129 <(\w+)\s*\/?><\/\1><[\w\W]+> needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
4130 <(\w+)\s*\/?><\/\1><[\w\W]+> namespace: namespaces.join(".")
4131 <(\w+)\s*\/?><\/\1><[\w\W]+> }, handleObjIn );
4132  
4133 <(\w+)\s*\/?><\/\1><[\w\W]+> // Init the event handler queue if we're the first
4134 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(handlers = events[ type ]) ) {
4135 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers = events[ type ] = [];
4136 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.delegateCount = 0;
4137  
4138 <(\w+)\s*\/?><\/\1><[\w\W]+> // Only use addEventListener if the special events handler returns false
4139 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
4140 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.addEventListener ) {
4141 <(\w+)\s*\/?><\/\1><[\w\W]+> elem.addEventListener( type, eventHandle, false );
4142 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4143 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4144 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4145  
4146 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.add ) {
4147 <(\w+)\s*\/?><\/\1><[\w\W]+> special.add.call( elem, handleObj );
4148  
4149 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !handleObj.handler.guid ) {
4150 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.handler.guid = handler.guid;
4151 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4152 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4153  
4154 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add to the element's handler list, delegates in front
4155 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector ) {
4156 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.splice( handlers.delegateCount++, 0, handleObj );
4157 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4158 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.push( handleObj );
4159 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4160  
4161 <(\w+)\s*\/?><\/\1><[\w\W]+> // Keep track of which events have ever been used, for event optimization
4162 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.global[ type ] = true;
4163 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4164  
4165 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4166  
4167 <(\w+)\s*\/?><\/\1><[\w\W]+> // Detach an event or set of events from an element
4168 <(\w+)\s*\/?><\/\1><[\w\W]+> remove: function( elem, types, handler, selector, mappedTypes ) {
4169  
4170 <(\w+)\s*\/?><\/\1><[\w\W]+> var j, origCount, tmp,
4171 <(\w+)\s*\/?><\/\1><[\w\W]+> events, t, handleObj,
4172 <(\w+)\s*\/?><\/\1><[\w\W]+> special, handlers, type, namespaces, origType,
4173 <(\w+)\s*\/?><\/\1><[\w\W]+> elemData = data_priv.hasData( elem ) && data_priv.get( elem );
4174  
4175 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !elemData || !(events = elemData.events) ) {
4176 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4177 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4178  
4179 <(\w+)\s*\/?><\/\1><[\w\W]+> // Once for each type.namespace in types; type may be omitted
4180 <(\w+)\s*\/?><\/\1><[\w\W]+> types = ( types || "" ).match( rnotwhite ) || [ "" ];
4181 <(\w+)\s*\/?><\/\1><[\w\W]+> t = types.length;
4182 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( t-- ) {
4183 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = rtypenamespace.exec( types[t] ) || [];
4184 <(\w+)\s*\/?><\/\1><[\w\W]+> type = origType = tmp[1];
4185 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = ( tmp[2] || "" ).split( "." ).sort();
4186  
4187 <(\w+)\s*\/?><\/\1><[\w\W]+> // Unbind all events (on this namespace, if provided) for the element
4188 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !type ) {
4189 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( type in events ) {
4190 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
4191 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4192 <(\w+)\s*\/?><\/\1><[\w\W]+> continue;
4193 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4194  
4195 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4196 <(\w+)\s*\/?><\/\1><[\w\W]+> type = ( selector ? special.delegateType : special.bindType ) || type;
4197 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers = events[ type ] || [];
4198 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
4199  
4200 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove matching events
4201 <(\w+)\s*\/?><\/\1><[\w\W]+> origCount = j = handlers.length;
4202 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( j-- ) {
4203 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = handlers[ j ];
4204  
4205 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( ( mappedTypes || origType === handleObj.origType ) &&
4206 <(\w+)\s*\/?><\/\1><[\w\W]+> ( !handler || handler.guid === handleObj.guid ) &&
4207 <(\w+)\s*\/?><\/\1><[\w\W]+> ( !tmp || tmp.test( handleObj.namespace ) ) &&
4208 <(\w+)\s*\/?><\/\1><[\w\W]+> ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
4209 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.splice( j, 1 );
4210  
4211 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handleObj.selector ) {
4212 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.delegateCount--;
4213 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4214 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.remove ) {
4215 <(\w+)\s*\/?><\/\1><[\w\W]+> special.remove.call( elem, handleObj );
4216 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4217 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4218 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4219  
4220 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove generic event handler if we removed something and no more handlers exist
4221 <(\w+)\s*\/?><\/\1><[\w\W]+> // (avoids potential for endless recursion during removal of special event handlers)
4222 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( origCount && !handlers.length ) {
4223 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
4224 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.removeEvent( elem, type, elemData.handle );
4225 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4226  
4227 <(\w+)\s*\/?><\/\1><[\w\W]+> delete events[ type ];
4228 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4229 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4230  
4231 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove the expando if it's no longer used
4232 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isEmptyObject( events ) ) {
4233 <(\w+)\s*\/?><\/\1><[\w\W]+> delete elemData.handle;
4234 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( elem, "events" );
4235 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4236 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4237  
4238 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function( event, data, elem, onlyHandlers ) {
4239  
4240 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, cur, tmp, bubbleType, ontype, handle, special,
4241 <(\w+)\s*\/?><\/\1><[\w\W]+> eventPath = [ elem || document ],
4242 <(\w+)\s*\/?><\/\1><[\w\W]+> type = hasOwn.call( event, "type" ) ? event.type : event,
4243 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
4244  
4245 <(\w+)\s*\/?><\/\1><[\w\W]+> cur = tmp = elem = elem || document;
4246  
4247 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't do events on text and comment nodes
4248 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
4249 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4250 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4251  
4252 <(\w+)\s*\/?><\/\1><[\w\W]+> // focus/blur morphs to focusin/out; ensure we're not firing them right now
4253 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
4254 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4255 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4256  
4257 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type.indexOf(".") >= 0 ) {
4258 <(\w+)\s*\/?><\/\1><[\w\W]+> // Namespaced trigger; create a regexp to match event type in handle()
4259 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = type.split(".");
4260 <(\w+)\s*\/?><\/\1><[\w\W]+> type = namespaces.shift();
4261 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces.sort();
4262 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4263 <(\w+)\s*\/?><\/\1><[\w\W]+> ontype = type.indexOf(":") < 0 && "on" + type;
4264  
4265 <(\w+)\s*\/?><\/\1><[\w\W]+> // Caller can pass in a jQuery.Event object, Object, or just an event type string
4266 <(\w+)\s*\/?><\/\1><[\w\W]+> event = event[ jQuery.expando ] ?
4267 <(\w+)\s*\/?><\/\1><[\w\W]+> event :
4268 <(\w+)\s*\/?><\/\1><[\w\W]+> new jQuery.Event( type, typeof event === "object" && event );
4269  
4270 <(\w+)\s*\/?><\/\1><[\w\W]+> // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
4271 <(\w+)\s*\/?><\/\1><[\w\W]+> event.isTrigger = onlyHandlers ? 2 : 3;
4272 <(\w+)\s*\/?><\/\1><[\w\W]+> event.namespace = namespaces.join(".");
4273 <(\w+)\s*\/?><\/\1><[\w\W]+> event.namespace_re = event.namespace ?
4274 <(\w+)\s*\/?><\/\1><[\w\W]+> new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
4275 <(\w+)\s*\/?><\/\1><[\w\W]+> null;
4276  
4277 <(\w+)\s*\/?><\/\1><[\w\W]+> // Clean up the event in case it is being reused
4278 <(\w+)\s*\/?><\/\1><[\w\W]+> event.result = undefined;
4279 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.target ) {
4280 <(\w+)\s*\/?><\/\1><[\w\W]+> event.target = elem;
4281 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4282  
4283 <(\w+)\s*\/?><\/\1><[\w\W]+> // Clone any incoming data and prepend the event, creating the handler arg list
4284 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data == null ?
4285 <(\w+)\s*\/?><\/\1><[\w\W]+> [ event ] :
4286 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.makeArray( data, [ event ] );
4287  
4288 <(\w+)\s*\/?><\/\1><[\w\W]+> // Allow special events to draw outside the lines
4289 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4290 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
4291 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4292 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4293  
4294 <(\w+)\s*\/?><\/\1><[\w\W]+> // Determine event propagation path in advance, per W3C events spec (#9951)
4295 <(\w+)\s*\/?><\/\1><[\w\W]+> // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
4296 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
4297  
4298 <(\w+)\s*\/?><\/\1><[\w\W]+> bubbleType = special.delegateType || type;
4299 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !rfocusMorph.test( bubbleType + type ) ) {
4300 <(\w+)\s*\/?><\/\1><[\w\W]+> cur = cur.parentNode;
4301 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4302 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; cur; cur = cur.parentNode ) {
4303 <(\w+)\s*\/?><\/\1><[\w\W]+> eventPath.push( cur );
4304 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = cur;
4305 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4306  
4307 <(\w+)\s*\/?><\/\1><[\w\W]+> // Only add window if we got to document (e.g., not plain obj or detached DOM)
4308 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp === (elem.ownerDocument || document) ) {
4309 <(\w+)\s*\/?><\/\1><[\w\W]+> eventPath.push( tmp.defaultView || tmp.parentWindow || window );
4310 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4311 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4312  
4313 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fire handlers on the event path
4314 <(\w+)\s*\/?><\/\1><[\w\W]+> i = 0;
4315 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
4316  
4317 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = i > 1 ?
4318 <(\w+)\s*\/?><\/\1><[\w\W]+> bubbleType :
4319 <(\w+)\s*\/?><\/\1><[\w\W]+> special.bindType || type;
4320  
4321 <(\w+)\s*\/?><\/\1><[\w\W]+> // jQuery handler
4322 <(\w+)\s*\/?><\/\1><[\w\W]+> handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" );
4323 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handle ) {
4324 <(\w+)\s*\/?><\/\1><[\w\W]+> handle.apply( cur, data );
4325 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4326  
4327 <(\w+)\s*\/?><\/\1><[\w\W]+> // Native handler
4328 <(\w+)\s*\/?><\/\1><[\w\W]+> handle = ontype && cur[ ontype ];
4329 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
4330 <(\w+)\s*\/?><\/\1><[\w\W]+> event.result = handle.apply( cur, data );
4331 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.result === false ) {
4332 <(\w+)\s*\/?><\/\1><[\w\W]+> event.preventDefault();
4333 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4334 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4335 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4336 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = type;
4337  
4338 <(\w+)\s*\/?><\/\1><[\w\W]+> // If nobody prevented the default action, do it now
4339 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !onlyHandlers && !event.isDefaultPrevented() ) {
4340  
4341 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
4342 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.acceptData( elem ) ) {
4343  
4344 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call a native DOM method on the target with the same name name as the event.
4345 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't do default actions on window, that's where global variables be (#6170)
4346 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
4347  
4348 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't re-trigger an onFOO event when we call its FOO() method
4349 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = elem[ ontype ];
4350  
4351 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp ) {
4352 <(\w+)\s*\/?><\/\1><[\w\W]+> elem[ ontype ] = null;
4353 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4354  
4355 <(\w+)\s*\/?><\/\1><[\w\W]+> // Prevent re-triggering of the same event, since we already bubbled it above
4356 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.triggered = type;
4357 <(\w+)\s*\/?><\/\1><[\w\W]+> elem[ type ]();
4358 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.triggered = undefined;
4359  
4360 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp ) {
4361 <(\w+)\s*\/?><\/\1><[\w\W]+> elem[ ontype ] = tmp;
4362 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4363 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4364 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4365 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4366  
4367 <(\w+)\s*\/?><\/\1><[\w\W]+> return event.result;
4368 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4369  
4370 <(\w+)\s*\/?><\/\1><[\w\W]+> dispatch: function( event ) {
4371  
4372 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make a writable jQuery.Event from the native event object
4373 <(\w+)\s*\/?><\/\1><[\w\W]+> event = jQuery.event.fix( event );
4374  
4375 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, j, ret, matched, handleObj,
4376 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue = [],
4377 <(\w+)\s*\/?><\/\1><[\w\W]+> args = slice.call( arguments ),
4378 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [],
4379 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ event.type ] || {};
4380  
4381 <(\w+)\s*\/?><\/\1><[\w\W]+> // Use the fix-ed jQuery.Event rather than the (read-only) native event
4382 <(\w+)\s*\/?><\/\1><[\w\W]+> args[0] = event;
4383 <(\w+)\s*\/?><\/\1><[\w\W]+> event.delegateTarget = this;
4384  
4385 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call the preDispatch hook for the mapped type, and let it bail if desired
4386 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
4387 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4388 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4389  
4390 <(\w+)\s*\/?><\/\1><[\w\W]+> // Determine handlers
4391 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue = jQuery.event.handlers.call( this, event, handlers );
4392  
4393 <(\w+)\s*\/?><\/\1><[\w\W]+> // Run delegates first; they may want to stop propagation beneath us
4394 <(\w+)\s*\/?><\/\1><[\w\W]+> i = 0;
4395 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
4396 <(\w+)\s*\/?><\/\1><[\w\W]+> event.currentTarget = matched.elem;
4397  
4398 <(\w+)\s*\/?><\/\1><[\w\W]+> j = 0;
4399 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
4400  
4401 <(\w+)\s*\/?><\/\1><[\w\W]+> // Triggered event must either 1) have no namespace, or
4402 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
4403 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
4404  
4405 <(\w+)\s*\/?><\/\1><[\w\W]+> event.handleObj = handleObj;
4406 <(\w+)\s*\/?><\/\1><[\w\W]+> event.data = handleObj.data;
4407  
4408 <(\w+)\s*\/?><\/\1><[\w\W]+> ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
4409 <(\w+)\s*\/?><\/\1><[\w\W]+> .apply( matched.elem, args );
4410  
4411 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( ret !== undefined ) {
4412 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( (event.result = ret) === false ) {
4413 <(\w+)\s*\/?><\/\1><[\w\W]+> event.preventDefault();
4414 <(\w+)\s*\/?><\/\1><[\w\W]+> event.stopPropagation();
4415 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4416 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4417 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4418 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4419 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4420  
4421 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call the postDispatch hook for the mapped type
4422 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.postDispatch ) {
4423 <(\w+)\s*\/?><\/\1><[\w\W]+> special.postDispatch.call( this, event );
4424 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4425  
4426 <(\w+)\s*\/?><\/\1><[\w\W]+> return event.result;
4427 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4428  
4429 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers: function( event, handlers ) {
4430 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, matches, sel, handleObj,
4431 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue = [],
4432 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateCount = handlers.delegateCount,
4433 <(\w+)\s*\/?><\/\1><[\w\W]+> cur = event.target;
4434  
4435 <(\w+)\s*\/?><\/\1><[\w\W]+> // Find delegate handlers
4436 <(\w+)\s*\/?><\/\1><[\w\W]+> // Black-hole SVG <use> instance trees (#13180)
4437 <(\w+)\s*\/?><\/\1><[\w\W]+> // Avoid non-left-click bubbling in Firefox (#3861)
4438 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
4439  
4440 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; cur !== this; cur = cur.parentNode || this ) {
4441  
4442 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
4443 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( cur.disabled !== true || event.type !== "click" ) {
4444 <(\w+)\s*\/?><\/\1><[\w\W]+> matches = [];
4445 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( i = 0; i < delegateCount; i++ ) {
4446 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = handlers[ i ];
4447  
4448 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't conflict with Object.prototype properties (#13203)
4449 <(\w+)\s*\/?><\/\1><[\w\W]+> sel = handleObj.selector + " ";
4450  
4451 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( matches[ sel ] === undefined ) {
4452 <(\w+)\s*\/?><\/\1><[\w\W]+> matches[ sel ] = handleObj.needsContext ?
4453 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( sel, this ).index( cur ) >= 0 :
4454 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.find( sel, this, null, [ cur ] ).length;
4455 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4456 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( matches[ sel ] ) {
4457 <(\w+)\s*\/?><\/\1><[\w\W]+> matches.push( handleObj );
4458 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4459 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4460 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( matches.length ) {
4461 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue.push({ elem: cur, handlers: matches });
4462 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4463 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4464 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4465 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4466  
4467 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add the remaining (directly-bound) handlers
4468 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( delegateCount < handlers.length ) {
4469 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
4470 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4471  
4472 <(\w+)\s*\/?><\/\1><[\w\W]+> return handlerQueue;
4473 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4474  
4475 <(\w+)\s*\/?><\/\1><[\w\W]+> // Includes some event props shared by KeyEvent and MouseEvent
4476 <(\w+)\s*\/?><\/\1><[\w\W]+> props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
4477  
4478 <(\w+)\s*\/?><\/\1><[\w\W]+> fixHooks: {},
4479  
4480 <(\w+)\s*\/?><\/\1><[\w\W]+> keyHooks: {
4481 <(\w+)\s*\/?><\/\1><[\w\W]+> props: "char charCode key keyCode".split(" "),
4482 <(\w+)\s*\/?><\/\1><[\w\W]+> filter: function( event, original ) {
4483  
4484 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add which for key events
4485 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.which == null ) {
4486 <(\w+)\s*\/?><\/\1><[\w\W]+> event.which = original.charCode != null ? original.charCode : original.keyCode;
4487 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4488  
4489 <(\w+)\s*\/?><\/\1><[\w\W]+> return event;
4490 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4491 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4492  
4493 <(\w+)\s*\/?><\/\1><[\w\W]+> mouseHooks: {
4494 <(\w+)\s*\/?><\/\1><[\w\W]+> props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
4495 <(\w+)\s*\/?><\/\1><[\w\W]+> filter: function( event, original ) {
4496 <(\w+)\s*\/?><\/\1><[\w\W]+> var eventDoc, doc, body,
4497 <(\w+)\s*\/?><\/\1><[\w\W]+> button = original.button;
4498  
4499 <(\w+)\s*\/?><\/\1><[\w\W]+> // Calculate pageX/Y if missing and clientX/Y available
4500 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.pageX == null && original.clientX != null ) {
4501 <(\w+)\s*\/?><\/\1><[\w\W]+> eventDoc = event.target.ownerDocument || document;
4502 <(\w+)\s*\/?><\/\1><[\w\W]+> doc = eventDoc.documentElement;
4503 <(\w+)\s*\/?><\/\1><[\w\W]+> body = eventDoc.body;
4504  
4505 <(\w+)\s*\/?><\/\1><[\w\W]+> event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
4506 <(\w+)\s*\/?><\/\1><[\w\W]+> event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
4507 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4508  
4509 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add which for click: 1 === left; 2 === middle; 3 === right
4510 <(\w+)\s*\/?><\/\1><[\w\W]+> // Note: button is not normalized, so don't use it
4511 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.which && button !== undefined ) {
4512 <(\w+)\s*\/?><\/\1><[\w\W]+> event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
4513 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4514  
4515 <(\w+)\s*\/?><\/\1><[\w\W]+> return event;
4516 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4517 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4518  
4519 <(\w+)\s*\/?><\/\1><[\w\W]+> fix: function( event ) {
4520 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event[ jQuery.expando ] ) {
4521 <(\w+)\s*\/?><\/\1><[\w\W]+> return event;
4522 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4523  
4524 <(\w+)\s*\/?><\/\1><[\w\W]+> // Create a writable copy of the event object and normalize some properties
4525 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, prop, copy,
4526 <(\w+)\s*\/?><\/\1><[\w\W]+> type = event.type,
4527 <(\w+)\s*\/?><\/\1><[\w\W]+> originalEvent = event,
4528 <(\w+)\s*\/?><\/\1><[\w\W]+> fixHook = this.fixHooks[ type ];
4529  
4530 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !fixHook ) {
4531 <(\w+)\s*\/?><\/\1><[\w\W]+> this.fixHooks[ type ] = fixHook =
4532 <(\w+)\s*\/?><\/\1><[\w\W]+> rmouseEvent.test( type ) ? this.mouseHooks :
4533 <(\w+)\s*\/?><\/\1><[\w\W]+> rkeyEvent.test( type ) ? this.keyHooks :
4534 <(\w+)\s*\/?><\/\1><[\w\W]+> {};
4535 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4536 <(\w+)\s*\/?><\/\1><[\w\W]+> copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
4537  
4538 <(\w+)\s*\/?><\/\1><[\w\W]+> event = new jQuery.Event( originalEvent );
4539  
4540 <(\w+)\s*\/?><\/\1><[\w\W]+> i = copy.length;
4541 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
4542 <(\w+)\s*\/?><\/\1><[\w\W]+> prop = copy[ i ];
4543 <(\w+)\s*\/?><\/\1><[\w\W]+> event[ prop ] = originalEvent[ prop ];
4544 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4545  
4546 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Cordova 2.5 (WebKit) (#13255)
4547 <(\w+)\s*\/?><\/\1><[\w\W]+> // All events should have a target; Cordova deviceready doesn't
4548 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.target ) {
4549 <(\w+)\s*\/?><\/\1><[\w\W]+> event.target = document;
4550 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4551  
4552 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Safari 6.0+, Chrome < 28
4553 <(\w+)\s*\/?><\/\1><[\w\W]+> // Target should not be a text node (#504, #13143)
4554 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.target.nodeType === 3 ) {
4555 <(\w+)\s*\/?><\/\1><[\w\W]+> event.target = event.target.parentNode;
4556 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4557  
4558 <(\w+)\s*\/?><\/\1><[\w\W]+> return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
4559 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4560  
4561 <(\w+)\s*\/?><\/\1><[\w\W]+> special: {
4562 <(\w+)\s*\/?><\/\1><[\w\W]+> load: {
4563 <(\w+)\s*\/?><\/\1><[\w\W]+> // Prevent triggered image.load events from bubbling to window.load
4564 <(\w+)\s*\/?><\/\1><[\w\W]+> noBubble: true
4565 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4566 <(\w+)\s*\/?><\/\1><[\w\W]+> focus: {
4567 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fire native event if possible so blur/focus sequence is correct
4568 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function() {
4569 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this !== safeActiveElement() && this.focus ) {
4570 <(\w+)\s*\/?><\/\1><[\w\W]+> this.focus();
4571 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4572 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4573 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4574 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateType: "focusin"
4575 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4576 <(\w+)\s*\/?><\/\1><[\w\W]+> blur: {
4577 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function() {
4578 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this === safeActiveElement() && this.blur ) {
4579 <(\w+)\s*\/?><\/\1><[\w\W]+> this.blur();
4580 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4581 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4582 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4583 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateType: "focusout"
4584 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4585 <(\w+)\s*\/?><\/\1><[\w\W]+> click: {
4586 <(\w+)\s*\/?><\/\1><[\w\W]+> // For checkbox, fire native event so checked state will be right
4587 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function() {
4588 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
4589 <(\w+)\s*\/?><\/\1><[\w\W]+> this.click();
4590 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4591 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4592 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4593  
4594 <(\w+)\s*\/?><\/\1><[\w\W]+> // For cross-browser consistency, don't fire native .click() on links
4595 <(\w+)\s*\/?><\/\1><[\w\W]+> _default: function( event ) {
4596 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.nodeName( event.target, "a" );
4597 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4598 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4599  
4600 <(\w+)\s*\/?><\/\1><[\w\W]+> beforeunload: {
4601 <(\w+)\s*\/?><\/\1><[\w\W]+> postDispatch: function( event ) {
4602  
4603 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Firefox 20+
4604 <(\w+)\s*\/?><\/\1><[\w\W]+> // Firefox doesn't alert if the returnValue field is not set.
4605 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.result !== undefined && event.originalEvent ) {
4606 <(\w+)\s*\/?><\/\1><[\w\W]+> event.originalEvent.returnValue = event.result;
4607 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4608 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4609 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4610 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4611  
4612 <(\w+)\s*\/?><\/\1><[\w\W]+> simulate: function( type, elem, event, bubble ) {
4613 <(\w+)\s*\/?><\/\1><[\w\W]+> // Piggyback on a donor event to simulate a different one.
4614 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fake originalEvent to avoid donor's stopPropagation, but if the
4615 <(\w+)\s*\/?><\/\1><[\w\W]+> // simulated event prevents default then we do the same on the donor.
4616 <(\w+)\s*\/?><\/\1><[\w\W]+> var e = jQuery.extend(
4617 <(\w+)\s*\/?><\/\1><[\w\W]+> new jQuery.Event(),
4618 <(\w+)\s*\/?><\/\1><[\w\W]+> event,
4619 <(\w+)\s*\/?><\/\1><[\w\W]+> {
4620 <(\w+)\s*\/?><\/\1><[\w\W]+> type: type,
4621 <(\w+)\s*\/?><\/\1><[\w\W]+> isSimulated: true,
4622 <(\w+)\s*\/?><\/\1><[\w\W]+> originalEvent: {}
4623 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4624 <(\w+)\s*\/?><\/\1><[\w\W]+> );
4625 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( bubble ) {
4626 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.trigger( e, null, elem );
4627 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4628 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.dispatch.call( elem, e );
4629 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4630 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( e.isDefaultPrevented() ) {
4631 <(\w+)\s*\/?><\/\1><[\w\W]+> event.preventDefault();
4632 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4633 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4634 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4635  
4636 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.removeEvent = function( elem, type, handle ) {
4637 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.removeEventListener ) {
4638 <(\w+)\s*\/?><\/\1><[\w\W]+> elem.removeEventListener( type, handle, false );
4639 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4640 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4641  
4642 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.Event = function( src, props ) {
4643 <(\w+)\s*\/?><\/\1><[\w\W]+> // Allow instantiation without the 'new' keyword
4644 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(this instanceof jQuery.Event) ) {
4645 <(\w+)\s*\/?><\/\1><[\w\W]+> return new jQuery.Event( src, props );
4646 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4647  
4648 <(\w+)\s*\/?><\/\1><[\w\W]+> // Event object
4649 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( src && src.type ) {
4650 <(\w+)\s*\/?><\/\1><[\w\W]+> this.originalEvent = src;
4651 <(\w+)\s*\/?><\/\1><[\w\W]+> this.type = src.type;
4652  
4653 <(\w+)\s*\/?><\/\1><[\w\W]+> // Events bubbling up the document may have been marked as prevented
4654 <(\w+)\s*\/?><\/\1><[\w\W]+> // by a handler lower down the tree; reflect the correct value.
4655 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isDefaultPrevented = src.defaultPrevented ||
4656 <(\w+)\s*\/?><\/\1><[\w\W]+> src.defaultPrevented === undefined &&
4657 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Android < 4.0
4658 <(\w+)\s*\/?><\/\1><[\w\W]+> src.returnValue === false ?
4659 <(\w+)\s*\/?><\/\1><[\w\W]+> returnTrue :
4660 <(\w+)\s*\/?><\/\1><[\w\W]+> returnFalse;
4661  
4662 <(\w+)\s*\/?><\/\1><[\w\W]+> // Event type
4663 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4664 <(\w+)\s*\/?><\/\1><[\w\W]+> this.type = src;
4665 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4666  
4667 <(\w+)\s*\/?><\/\1><[\w\W]+> // Put explicitly provided properties onto the event object
4668 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( props ) {
4669 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( this, props );
4670 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4671  
4672 <(\w+)\s*\/?><\/\1><[\w\W]+> // Create a timestamp if incoming event doesn't have one
4673 <(\w+)\s*\/?><\/\1><[\w\W]+> this.timeStamp = src && src.timeStamp || jQuery.now();
4674  
4675 <(\w+)\s*\/?><\/\1><[\w\W]+> // Mark it as fixed
4676 <(\w+)\s*\/?><\/\1><[\w\W]+> this[ jQuery.expando ] = true;
4677 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4678  
4679 <(\w+)\s*\/?><\/\1><[\w\W]+>// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
4680 <(\w+)\s*\/?><\/\1><[\w\W]+>// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
4681 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.Event.prototype = {
4682 <(\w+)\s*\/?><\/\1><[\w\W]+> isDefaultPrevented: returnFalse,
4683 <(\w+)\s*\/?><\/\1><[\w\W]+> isPropagationStopped: returnFalse,
4684 <(\w+)\s*\/?><\/\1><[\w\W]+> isImmediatePropagationStopped: returnFalse,
4685  
4686 <(\w+)\s*\/?><\/\1><[\w\W]+> preventDefault: function() {
4687 <(\w+)\s*\/?><\/\1><[\w\W]+> var e = this.originalEvent;
4688  
4689 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isDefaultPrevented = returnTrue;
4690  
4691 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( e && e.preventDefault ) {
4692 <(\w+)\s*\/?><\/\1><[\w\W]+> e.preventDefault();
4693 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4694 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4695 <(\w+)\s*\/?><\/\1><[\w\W]+> stopPropagation: function() {
4696 <(\w+)\s*\/?><\/\1><[\w\W]+> var e = this.originalEvent;
4697  
4698 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isPropagationStopped = returnTrue;
4699  
4700 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( e && e.stopPropagation ) {
4701 <(\w+)\s*\/?><\/\1><[\w\W]+> e.stopPropagation();
4702 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4703 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4704 <(\w+)\s*\/?><\/\1><[\w\W]+> stopImmediatePropagation: function() {
4705 <(\w+)\s*\/?><\/\1><[\w\W]+> var e = this.originalEvent;
4706  
4707 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isImmediatePropagationStopped = returnTrue;
4708  
4709 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( e && e.stopImmediatePropagation ) {
4710 <(\w+)\s*\/?><\/\1><[\w\W]+> e.stopImmediatePropagation();
4711 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4712  
4713 <(\w+)\s*\/?><\/\1><[\w\W]+> this.stopPropagation();
4714 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4715 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4716  
4717 <(\w+)\s*\/?><\/\1><[\w\W]+>// Create mouseenter/leave events using mouseover/out and event-time checks
4718 <(\w+)\s*\/?><\/\1><[\w\W]+>// Support: Chrome 15+
4719 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.each({
4720 <(\w+)\s*\/?><\/\1><[\w\W]+> mouseenter: "mouseover",
4721 <(\w+)\s*\/?><\/\1><[\w\W]+> mouseleave: "mouseout",
4722 <(\w+)\s*\/?><\/\1><[\w\W]+> pointerenter: "pointerover",
4723 <(\w+)\s*\/?><\/\1><[\w\W]+> pointerleave: "pointerout"
4724 <(\w+)\s*\/?><\/\1><[\w\W]+>}, function( orig, fix ) {
4725 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.special[ orig ] = {
4726 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateType: fix,
4727 <(\w+)\s*\/?><\/\1><[\w\W]+> bindType: fix,
4728  
4729 <(\w+)\s*\/?><\/\1><[\w\W]+> handle: function( event ) {
4730 <(\w+)\s*\/?><\/\1><[\w\W]+> var ret,
4731 <(\w+)\s*\/?><\/\1><[\w\W]+> target = this,
4732 <(\w+)\s*\/?><\/\1><[\w\W]+> related = event.relatedTarget,
4733 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = event.handleObj;
4734  
4735 <(\w+)\s*\/?><\/\1><[\w\W]+> // For mousenter/leave call the handler if related is outside the target.
4736 <(\w+)\s*\/?><\/\1><[\w\W]+> // NB: No relatedTarget if the mouse left/entered the browser window
4737 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
4738 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = handleObj.origType;
4739 <(\w+)\s*\/?><\/\1><[\w\W]+> ret = handleObj.handler.apply( this, arguments );
4740 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = fix;
4741 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4742 <(\w+)\s*\/?><\/\1><[\w\W]+> return ret;
4743 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4744 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4745 <(\w+)\s*\/?><\/\1><[\w\W]+>});
4746  
4747 <(\w+)\s*\/?><\/\1><[\w\W]+>// Create "bubbling" focus and blur events
4748 <(\w+)\s*\/?><\/\1><[\w\W]+>// Support: Firefox, Chrome, Safari
4749 <(\w+)\s*\/?><\/\1><[\w\W]+>if ( !support.focusinBubbles ) {
4750 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
4751  
4752 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attach a single capturing handler on the document while someone wants focusin/focusout
4753 <(\w+)\s*\/?><\/\1><[\w\W]+> var handler = function( event ) {
4754 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
4755 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4756  
4757 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.special[ fix ] = {
4758 <(\w+)\s*\/?><\/\1><[\w\W]+> setup: function() {
4759 <(\w+)\s*\/?><\/\1><[\w\W]+> var doc = this.ownerDocument || this,
4760 <(\w+)\s*\/?><\/\1><[\w\W]+> attaches = data_priv.access( doc, fix );
4761  
4762 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !attaches ) {
4763 <(\w+)\s*\/?><\/\1><[\w\W]+> doc.addEventListener( orig, handler, true );
4764 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4765 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.access( doc, fix, ( attaches || 0 ) + 1 );
4766 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4767 <(\w+)\s*\/?><\/\1><[\w\W]+> teardown: function() {
4768 <(\w+)\s*\/?><\/\1><[\w\W]+> var doc = this.ownerDocument || this,
4769 <(\w+)\s*\/?><\/\1><[\w\W]+> attaches = data_priv.access( doc, fix ) - 1;
4770  
4771 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !attaches ) {
4772 <(\w+)\s*\/?><\/\1><[\w\W]+> doc.removeEventListener( orig, handler, true );
4773 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( doc, fix );
4774  
4775 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4776 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.access( doc, fix, attaches );
4777 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4778 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4779 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4780 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4781 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4782  
4783 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
4784  
4785 <(\w+)\s*\/?><\/\1><[\w\W]+> on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
4786 <(\w+)\s*\/?><\/\1><[\w\W]+> var origFn, type;
4787  
4788 <(\w+)\s*\/?><\/\1><[\w\W]+> // Types can be a map of types/handlers
4789 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof types === "object" ) {
4790 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types-Object, selector, data )
4791 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof selector !== "string" ) {
4792 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types-Object, data )
4793 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data || selector;
4794 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = undefined;
4795 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4796 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( type in types ) {
4797 <(\w+)\s*\/?><\/\1><[\w\W]+> this.on( type, selector, data, types[ type ], one );
4798 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4799 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4800 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4801  
4802 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data == null && fn == null ) {
4803 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types, fn )
4804 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = selector;
4805 <(\w+)\s*\/?><\/\1><[\w\W]+> data = selector = undefined;
4806 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( fn == null ) {
4807 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof selector === "string" ) {
4808 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types, selector, fn )
4809 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = data;
4810 <(\w+)\s*\/?><\/\1><[\w\W]+> data = undefined;
4811 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4812 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types, data, fn )
4813 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = data;
4814 <(\w+)\s*\/?><\/\1><[\w\W]+> data = selector;
4815 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = undefined;
4816 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4817 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4818 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn === false ) {
4819 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = returnFalse;
4820 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( !fn ) {
4821 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4822 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4823  
4824 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( one === 1 ) {
4825 <(\w+)\s*\/?><\/\1><[\w\W]+> origFn = fn;
4826 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = function( event ) {
4827 <(\w+)\s*\/?><\/\1><[\w\W]+> // Can use an empty set, since event contains the info
4828 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery().off( event );
4829 <(\w+)\s*\/?><\/\1><[\w\W]+> return origFn.apply( this, arguments );
4830 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4831 <(\w+)\s*\/?><\/\1><[\w\W]+> // Use same guid so caller can remove using origFn
4832 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
4833 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4834 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each( function() {
4835 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.add( this, types, fn, data, selector );
4836 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4837 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4838 <(\w+)\s*\/?><\/\1><[\w\W]+> one: function( types, selector, data, fn ) {
4839 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.on( types, selector, data, fn, 1 );
4840 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4841 <(\w+)\s*\/?><\/\1><[\w\W]+> off: function( types, selector, fn ) {
4842 <(\w+)\s*\/?><\/\1><[\w\W]+> var handleObj, type;
4843 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( types && types.preventDefault && types.handleObj ) {
4844 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( event ) dispatched jQuery.Event
4845 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = types.handleObj;
4846 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( types.delegateTarget ).off(
4847 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
4848 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.selector,
4849 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.handler
4850 <(\w+)\s*\/?><\/\1><[\w\W]+> );
4851 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4852 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4853 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof types === "object" ) {
4854 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types-object [, selector] )
4855 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( type in types ) {
4856 <(\w+)\s*\/?><\/\1><[\w\W]+> this.off( type, selector, types[ type ] );
4857 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4858 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4859 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4860 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector === false || typeof selector === "function" ) {
4861 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types [, fn] )
4862 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = selector;
4863 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = undefined;
4864 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4865 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn === false ) {
4866 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = returnFalse;
4867 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4868 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
4869 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.remove( this, types, fn, selector );
4870 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4871 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4872  
4873 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function( type, data ) {
4874 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
4875 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.trigger( type, data, this );
4876 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4877 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4878 <(\w+)\s*\/?><\/\1><[\w\W]+> triggerHandler: function( type, data ) {
4879 <(\w+)\s*\/?><\/\1><[\w\W]+> var elem = this[0];
4880 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem ) {
4881 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.event.trigger( type, data, elem, true );
4882 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4883 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4884 <(\w+)\s*\/?><\/\1><[\w\W]+>});
4885  
4886  
4887 <(\w+)\s*\/?><\/\1><[\w\W]+>var
4888 <(\w+)\s*\/?><\/\1><[\w\W]+> rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
4889 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^> rtagName = /<([\w:]+)/,
4890 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/ rhtml = /<|&#?\w+;/,
4891 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/ rnoInnerhtml = /<(?:script|style|link)/i,
4892 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // checked="checked" or checked
4893 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
4894 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rscriptType = /^$|\/(?:java|ecma)script/i,
4895 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rscriptTypeMasked = /^true\/(.*)/,
4896 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rcleanScript = /^\s*\s*$/g,
4897  
4898 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // We have to close these tags to support XHTML (#13200)
4899 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ wrapMap = {
4900  
4901 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE 9
4902 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ option: [ 1, "<select multiple='multiple'>", "</select>" ],
4903  
4904 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ thead: [ 1, "<table>", "</table>" ],
4905 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
4906 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tr: [ 2, "<table><tbody>", "</tbody></table>" ],
4907 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
4908  
4909 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ _default: [ 0, "", "" ]
4910 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
4911  
4912 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: IE 9
4913 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/wrapMap.optgroup = wrapMap.option;
4914  
4915 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
4916 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/wrapMap.th = wrapMap.td;
4917  
4918 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: 1.x compatibility
4919 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Manipulating tables requires a tbody
4920 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function manipulationTarget( elem, content ) {
4921 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return jQuery.nodeName( elem, "table" ) &&
4922 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
4923  
4924 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.getElementsByTagName("tbody")[0] ||
4925 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
4926 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem;
4927 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4928  
4929 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Replace/restore the type attribute of script elements for safe DOM manipulation
4930 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function disableScript( elem ) {
4931 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;
4932 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem;
4933 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4934 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function restoreScript( elem ) {
4935 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var match = rscriptTypeMasked.exec( elem.type );
4936  
4937 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( match ) {
4938 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.type = match[ 1 ];
4939 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
4940 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.removeAttribute("type");
4941 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4942  
4943 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem;
4944 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4945  
4946 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Mark scripts as having already been evaluated
4947 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function setGlobalEval( elems, refElements ) {
4948 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var i = 0,
4949 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = elems.length;
4950  
4951 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i < l; i++ ) {
4952 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ data_priv.set(
4953 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" )
4954 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ );
4955 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4956 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4957  
4958 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function cloneCopyEvent( src, dest ) {
4959 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
4960  
4961 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( dest.nodeType !== 1 ) {
4962 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
4963 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4964  
4965 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // 1. Copy private data: events, handlers, etc.
4966 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( data_priv.hasData( src ) ) {
4967 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ pdataOld = data_priv.access( src );
4968 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ pdataCur = data_priv.set( dest, pdataOld );
4969 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ events = pdataOld.events;
4970  
4971 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( events ) {
4972 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ delete pdataCur.handle;
4973 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ pdataCur.events = {};
4974  
4975 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( type in events ) {
4976 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( i = 0, l = events[ type ].length; i < l; i++ ) {
4977 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.event.add( dest, type, events[ type ][ i ] );
4978 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4979 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4980 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4981 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4982  
4983 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // 2. Copy user data
4984 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( data_user.hasData( src ) ) {
4985 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ udataOld = data_user.access( src );
4986 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ udataCur = jQuery.extend( {}, udataOld );
4987  
4988 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ data_user.set( dest, udataCur );
4989 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4990 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4991  
4992 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function getAll( context, tag ) {
4993 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
4994 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
4995 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ [];
4996  
4997 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
4998 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.merge( [ context ], ret ) :
4999 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret;
5000 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5001  
5002 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: IE >= 9
5003 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function fixInput( src, dest ) {
5004 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var nodeName = dest.nodeName.toLowerCase();
5005  
5006 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fails to persist the checked state of a cloned checkbox or radio button.
5007 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
5008 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ dest.checked = src.checked;
5009  
5010 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fails to return the selected option to the default selected state when cloning options
5011 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else if ( nodeName === "input" || nodeName === "textarea" ) {
5012 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ dest.defaultValue = src.defaultValue;
5013 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5014 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5015  
5016 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.extend({
5017 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ clone: function( elem, dataAndEvents, deepDataAndEvents ) {
5018 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var i, l, srcElements, destElements,
5019 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ clone = elem.cloneNode( true ),
5020 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ inPage = jQuery.contains( elem.ownerDocument, elem );
5021  
5022 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE >= 9
5023 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fix Cloning issues
5024 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
5025 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ !jQuery.isXMLDoc( elem ) ) {
5026  
5027 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
5028 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ destElements = getAll( clone );
5029 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ srcElements = getAll( elem );
5030  
5031 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( i = 0, l = srcElements.length; i < l; i++ ) {
5032 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fixInput( srcElements[ i ], destElements[ i ] );
5033 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5034 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5035  
5036 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Copy the events from the original to the clone
5037 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( dataAndEvents ) {
5038 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( deepDataAndEvents ) {
5039 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ srcElements = srcElements || getAll( elem );
5040 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ destElements = destElements || getAll( clone );
5041  
5042 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( i = 0, l = srcElements.length; i < l; i++ ) {
5043 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cloneCopyEvent( srcElements[ i ], destElements[ i ] );
5044 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5045 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5046 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cloneCopyEvent( elem, clone );
5047 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5048 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5049  
5050 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Preserve script evaluation history
5051 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ destElements = getAll( clone, "script" );
5052 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( destElements.length > 0 ) {
5053 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
5054 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5055  
5056 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Return the cloned set
5057 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return clone;
5058 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5059  
5060 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ buildFragment: function( elems, context, scripts, selection ) {
5061 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elem, tmp, tag, wrap, contains, j,
5062 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fragment = context.createDocumentFragment(),
5063 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ nodes = [],
5064 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0,
5065 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = elems.length;
5066  
5067 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i < l; i++ ) {
5068 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = elems[ i ];
5069  
5070 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem || elem === 0 ) {
5071  
5072 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Add nodes directly
5073 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( jQuery.type( elem ) === "object" ) {
5074 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: QtWebKit
5075 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // jQuery.merge because push.apply(_, arraylike) throws
5076 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
5077  
5078 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Convert non-html into a text node
5079 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else if ( !rhtml.test( elem ) ) {
5080 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ nodes.push( context.createTextNode( elem ) );
5081  
5082 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Convert html into DOM nodes
5083 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5084 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp = tmp || fragment.appendChild( context.createElement("div") );
5085  
5086 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Deserialize a standard representation
5087 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
5088 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ wrap = wrapMap[ tag ] || wrapMap._default;
5089 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[ 2 ];
5090  
5091 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Descend through wrappers to the right content
5092 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ j = wrap[ 0 ];
5093 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ while ( j-- ) {
5094 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp = tmp.lastChild;
5095 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5096  
5097 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: QtWebKit
5098 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // jQuery.merge because push.apply(_, arraylike) throws
5099 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.merge( nodes, tmp.childNodes );
5100  
5101 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Remember the top-level container
5102 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp = fragment.firstChild;
5103  
5104 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fixes #12346
5105 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Webkit, IE
5106 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp.textContent = "";
5107 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5108 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5109 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5110  
5111 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Remove wrapper from fragment
5112 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fragment.textContent = "";
5113  
5114 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5115 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ while ( (elem = nodes[ i++ ]) ) {
5116  
5117 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // #4087 - If origin and destination elements are the same, and this is
5118 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // that element, do not do anything
5119 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
5120 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ continue;
5121 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5122  
5123 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ contains = jQuery.contains( elem.ownerDocument, elem );
5124  
5125 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Append to fragment
5126 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp = getAll( fragment.appendChild( elem ), "script" );
5127  
5128 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Preserve script evaluation history
5129 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( contains ) {
5130 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ setGlobalEval( tmp );
5131 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5132  
5133 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Capture executables
5134 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( scripts ) {
5135 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ j = 0;
5136 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ while ( (elem = tmp[ j++ ]) ) {
5137 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( rscriptType.test( elem.type || "" ) ) {
5138 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ scripts.push( elem );
5139 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5140 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5141 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5142 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5143  
5144 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return fragment;
5145 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5146  
5147 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cleanData: function( elems ) {
5148 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var data, elem, type, key,
5149 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ special = jQuery.event.special,
5150 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5151  
5152 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; (elem = elems[ i ]) !== undefined; i++ ) {
5153 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( jQuery.acceptData( elem ) ) {
5154 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ key = elem[ data_priv.expando ];
5155  
5156 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( key && (data = data_priv.cache[ key ]) ) {
5157 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( data.events ) {
5158 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( type in data.events ) {
5159 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( special[ type ] ) {
5160 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.event.remove( elem, type );
5161  
5162 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // This is a shortcut to avoid jQuery.event.remove's overhead
5163 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5164 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.removeEvent( elem, type, data.handle );
5165 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5166 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5167 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5168 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( data_priv.cache[ key ] ) {
5169 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Discard any remaining `private` data
5170 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ delete data_priv.cache[ key ];
5171 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5172 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5173 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5174 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Discard any remaining `user` data
5175 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ delete data_user.cache[ elem[ data_user.expando ] ];
5176 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5177 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5178 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
5179  
5180 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.fn.extend({
5181 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ text: function( value ) {
5182 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return access( this, function( value ) {
5183 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return value === undefined ?
5184 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.text( this ) :
5185 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.empty().each(function() {
5186 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5187 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.textContent = value;
5188 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5189 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5190 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }, null, value, arguments.length );
5191 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5192  
5193 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ append: function() {
5194 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.domManip( arguments, function( elem ) {
5195 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5196 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var target = manipulationTarget( this, elem );
5197 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ target.appendChild( elem );
5198 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5199 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5200 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5201  
5202 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ prepend: function() {
5203 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.domManip( arguments, function( elem ) {
5204 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5205 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var target = manipulationTarget( this, elem );
5206 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ target.insertBefore( elem, target.firstChild );
5207 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5208 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5209 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5210  
5211 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ before: function() {
5212 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.domManip( arguments, function( elem ) {
5213 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.parentNode ) {
5214 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.parentNode.insertBefore( elem, this );
5215 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5216 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5217 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5218  
5219 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ after: function() {
5220 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.domManip( arguments, function( elem ) {
5221 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.parentNode ) {
5222 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.parentNode.insertBefore( elem, this.nextSibling );
5223 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5224 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5225 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5226  
5227 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ remove: function( selector, keepData /* Internal Use Only */ ) {
5228 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elem,
5229 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elems = selector ? jQuery.filter( selector, this ) : this,
5230 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5231  
5232 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; (elem = elems[i]) != null; i++ ) {
5233 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !keepData && elem.nodeType === 1 ) {
5234 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cleanData( getAll( elem ) );
5235 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5236  
5237 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem.parentNode ) {
5238 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
5239 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ setGlobalEval( getAll( elem, "script" ) );
5240 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5241 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.parentNode.removeChild( elem );
5242 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5243 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5244  
5245 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
5246 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5247  
5248 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ empty: function() {
5249 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elem,
5250 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5251  
5252 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; (elem = this[i]) != null; i++ ) {
5253 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem.nodeType === 1 ) {
5254  
5255 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Prevent memory leaks
5256 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cleanData( getAll( elem, false ) );
5257  
5258 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Remove any remaining nodes
5259 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.textContent = "";
5260 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5261 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5262  
5263 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
5264 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5265  
5266 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ clone: function( dataAndEvents, deepDataAndEvents ) {
5267 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
5268 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
5269  
5270 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.map(function() {
5271 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
5272 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5273 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5274  
5275 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ html: function( value ) {
5276 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return access( this, function( value ) {
5277 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elem = this[ 0 ] || {},
5278 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0,
5279 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = this.length;
5280  
5281 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( value === undefined && elem.nodeType === 1 ) {
5282 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem.innerHTML;
5283 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5284  
5285 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // See if we can take a shortcut and just use innerHTML
5286 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
5287 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
5288  
5289 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value = value.replace( rxhtmlTag, "<$1></$2>" );
5290  
5291 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ try {
5292 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i < l; i++ ) {
5293 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = this[ i ] || {};
5294  
5295 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Remove element nodes and prevent memory leaks
5296 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem.nodeType === 1 ) {
5297 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cleanData( getAll( elem, false ) );
5298 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.innerHTML = value;
5299 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5300 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5301  
5302 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = 0;
5303  
5304 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // If using innerHTML throws an exception, use the fallback method
5305 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } catch( e ) {}
5306 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5307  
5308 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem ) {
5309 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.empty().append( value );
5310 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5311 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }, null, value, arguments.length );
5312 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5313  
5314 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ replaceWith: function() {
5315 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var arg = arguments[ 0 ];
5316  
5317 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Make the changes, replacing each context element with the new content
5318 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.domManip( arguments, function( elem ) {
5319 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ arg = this.parentNode;
5320  
5321 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cleanData( getAll( this ) );
5322  
5323 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( arg ) {
5324 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ arg.replaceChild( elem, this );
5325 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5326 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5327  
5328 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Force removal if there was no new content (e.g., from empty arguments)
5329 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return arg && (arg.length || arg.nodeType) ? this : this.remove();
5330 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5331  
5332 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ detach: function( selector ) {
5333 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.remove( selector, true );
5334 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5335  
5336 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ domManip: function( args, callback ) {
5337  
5338 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Flatten any nested arrays
5339 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ args = concat.apply( [], args );
5340  
5341 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var fragment, first, scripts, hasScripts, node, doc,
5342 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0,
5343 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = this.length,
5344 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ set = this,
5345 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ iNoClone = l - 1,
5346 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value = args[ 0 ],
5347 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ isFunction = jQuery.isFunction( value );
5348  
5349 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // We can't cloneNode fragments that contain checked, in WebKit
5350 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isFunction ||
5351 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ( l > 1 && typeof value === "string" &&
5352 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ !support.checkClone && rchecked.test( value ) ) ) {
5353 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.each(function( index ) {
5354 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var self = set.eq( index );
5355 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isFunction ) {
5356 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ args[ 0 ] = value.call( this, index, self.html() );
5357 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5358 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ self.domManip( args, callback );
5359 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5360 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5361  
5362 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( l ) {
5363 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
5364 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ first = fragment.firstChild;
5365  
5366 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( fragment.childNodes.length === 1 ) {
5367 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fragment = first;
5368 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5369  
5370 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( first ) {
5371 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
5372 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hasScripts = scripts.length;
5373  
5374 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Use the original fragment for the last item instead of the first because it can end up
5375 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // being emptied incorrectly in certain situations (#8070).
5376 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i < l; i++ ) {
5377 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ node = fragment;
5378  
5379 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( i !== iNoClone ) {
5380 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ node = jQuery.clone( node, true, true );
5381  
5382 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Keep references to cloned scripts for later restoration
5383 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( hasScripts ) {
5384 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: QtWebKit
5385 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // jQuery.merge because push.apply(_, arraylike) throws
5386 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.merge( scripts, getAll( node, "script" ) );
5387 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5388 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5389  
5390 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ callback.call( this[ i ], node, i );
5391 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5392  
5393 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( hasScripts ) {
5394 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ doc = scripts[ scripts.length - 1 ].ownerDocument;
5395  
5396 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Reenable scripts
5397 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.map( scripts, restoreScript );
5398  
5399 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Evaluate executable scripts on first document insertion
5400 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( i = 0; i < hasScripts; i++ ) {
5401 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ node = scripts[ i ];
5402 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( rscriptType.test( node.type || "" ) &&
5403 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ !data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
5404  
5405 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( node.src ) {
5406 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Optional AJAX dependency, but won't run scripts if not present
5407 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( jQuery._evalUrl ) {
5408 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery._evalUrl( node.src );
5409 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5410 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5411 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) );
5412 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5413 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5414 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5415 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5416 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5417 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5418  
5419 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
5420 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5421 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
5422  
5423 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.each({
5424 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ appendTo: "append",
5425 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ prependTo: "prepend",
5426 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ insertBefore: "before",
5427 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ insertAfter: "after",
5428 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ replaceAll: "replaceWith"
5429 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}, function( name, original ) {
5430 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.fn[ name ] = function( selector ) {
5431 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elems,
5432 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = [],
5433 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ insert = jQuery( selector ),
5434 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ last = insert.length - 1,
5435 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5436  
5437 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i <= last; i++ ) {
5438 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elems = i === last ? this : this.clone( true );
5439 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery( insert[ i ] )[ original ]( elems );
5440  
5441 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: QtWebKit
5442 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // .get() because push.apply(_, arraylike) throws
5443 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ push.apply( ret, elems.get() );
5444 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5445  
5446 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.pushStack( ret );
5447 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
5448 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
5449  
5450  
5451 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var iframe,
5452 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elemdisplay = {};
5453  
5454 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)//**
5455 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ * Retrieve the actual display of a element
5456 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ * @param {String} name nodeName of the element
5457 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ * @param {Object} doc Document object
5458 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ */
5459 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Called only from within defaultDisplay
5460 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function actualDisplay( name, doc ) {
5461 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var style,
5462 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
5463  
5464 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // getDefaultComputedStyle might be reliably used only on attached element
5465 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
5466  
5467 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Use of this method is a temporary fix (more like optmization) until something better comes along,
5468 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // since it was removed from specification and supported only in FF
5469 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.display : jQuery.css( elem[ 0 ], "display" );
5470  
5471 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // We don't have any data stored on the element,
5472 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // so use "detach" method as fast way to get rid of the element
5473 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.detach();
5474  
5475 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return display;
5476 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5477  
5478 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)//**
5479 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ * Try to determine the default display value of an element
5480 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ * @param {String} nodeName
5481 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ */
5482 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function defaultDisplay( nodeName ) {
5483 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var doc = document,
5484 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ display = elemdisplay[ nodeName ];
5485  
5486 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !display ) {
5487 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ display = actualDisplay( nodeName, doc );
5488  
5489 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // If the simple way fails, read from inside an iframe
5490 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( display === "none" || !display ) {
5491  
5492 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Use the already-created iframe if possible
5493 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
5494  
5495 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
5496 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ doc = iframe[ 0 ].contentDocument;
5497  
5498 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE
5499 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ doc.write();
5500 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ doc.close();
5501  
5502 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ display = actualDisplay( nodeName, doc );
5503 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ iframe.detach();
5504 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5505  
5506 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Store the correct default display
5507 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elemdisplay[ nodeName ] = display;
5508 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5509  
5510 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return display;
5511 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5512 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var rmargin = (/^margin/);
5513  
5514 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5515  
5516 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var getStyles = function( elem ) {
5517 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
5518 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
5519  
5520  
5521  
5522 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function curCSS( elem, name, computed ) {
5523 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var width, minWidth, maxWidth, ret,
5524 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style = elem.style;
5525  
5526 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ computed = computed || getStyles( elem );
5527  
5528 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE9
5529 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // getPropertyValue is only needed for .css('filter') in IE9, see #12537
5530 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5531 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = computed.getPropertyValue( name ) || computed[ name ];
5532 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5533  
5534 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5535  
5536 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
5537 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = jQuery.style( elem, name );
5538 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5539  
5540 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: iOS < 6
5541 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // A tribute to the "awesome hack by Dean Edwards"
5542 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // iOS < 6 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
5543 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
5544 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
5545  
5546 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Remember the original values
5547 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ width = style.width;
5548 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ minWidth = style.minWidth;
5549 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ maxWidth = style.maxWidth;
5550  
5551 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Put in the new values to get a computed value out
5552 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.minWidth = style.maxWidth = style.width = ret;
5553 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = computed.width;
5554  
5555 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Revert the changed values
5556 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.width = width;
5557 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.minWidth = minWidth;
5558 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.maxWidth = maxWidth;
5559 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5560 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5561  
5562 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret !== undefined ?
5563 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE
5564 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // IE returns zIndex value as an integer.
5565 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret + "" :
5566 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret;
5567 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5568  
5569  
5570 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function addGetHookIf( conditionFn, hookFn ) {
5571 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Define the hook, we'll check on the first run if it's really needed.
5572 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return {
5573 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ get: function() {
5574 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( conditionFn() ) {
5575 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Hook not needed (or it's not possible to use it due to missing dependency),
5576 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // remove it.
5577 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Since there are no other hooks for marginRight, remove the whole object.
5578 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ delete this.get;
5579 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
5580 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5581  
5582 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Hook needed; redefine it so that the support test is not executed again.
5583  
5584 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return (this.get = hookFn).apply( this, arguments );
5585 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5586 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
5587 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5588  
5589  
5590 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/(function() {
5591 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var pixelPositionVal, boxSizingReliableVal,
5592 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem = document.documentElement,
5593 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ container = document.createElement( "div" ),
5594 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div = document.createElement( "div" );
5595  
5596 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !div.style ) {
5597 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
5598 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5599  
5600 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div.style.backgroundClip = "content-box";
5601 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div.cloneNode( true ).style.backgroundClip = "";
5602 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ support.clearCloneStyle = div.style.backgroundClip === "content-box";
5603  
5604 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ container.style.cssText = "border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;" +
5605 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "position:absolute";
5606 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ container.appendChild( div );
5607  
5608 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Executing both pixelPosition & boxSizingReliable tests require only one layout
5609 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // so they're executed at the same time to save the second computation.
5610 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ function computePixelPositionAndBoxSizingReliable() {
5611 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div.style.cssText =
5612 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Firefox<29, Android 2.3
5613 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Vendor-prefix box-sizing
5614 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
5615 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
5616 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "border:1px;padding:1px;width:4px;position:absolute";
5617 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div.innerHTML = "";
5618 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.appendChild( container );
5619  
5620 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var divStyle = window.getComputedStyle( div, null );
5621 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ pixelPositionVal = divStyle.top !== "1%";
5622 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ boxSizingReliableVal = divStyle.width === "4px";
5623  
5624 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.removeChild( container );
5625 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5626  
5627 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: node.js jsdom
5628 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Don't assume that getComputedStyle is a property of the global object
5629 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( window.getComputedStyle ) {
5630 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.extend( support, {
5631 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ pixelPosition: function() {
5632 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // This test is executed only once but we still do memoizing
5633 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // since we can use the boxSizingReliable pre-computing.
5634 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // No need to check if the test was already performed, though.
5635 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ computePixelPositionAndBoxSizingReliable();
5636 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return pixelPositionVal;
5637 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5638 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ boxSizingReliable: function() {
5639 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( boxSizingReliableVal == null ) {
5640 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ computePixelPositionAndBoxSizingReliable();
5641 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5642 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return boxSizingReliableVal;
5643 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5644 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ reliableMarginRight: function() {
5645 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Android 2.3
5646 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Check if div with explicit width and no margin-right incorrectly
5647 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // gets computed margin-right based on width of container. (#3333)
5648 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
5649 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // This support function is only executed once so no memoizing is needed.
5650 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var ret,
5651 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ marginDiv = div.appendChild( document.createElement( "div" ) );
5652  
5653 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Reset CSS: box-sizing; display; margin; border; padding
5654 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ marginDiv.style.cssText = div.style.cssText =
5655 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Firefox<29, Android 2.3
5656 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Vendor-prefix box-sizing
5657 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
5658 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "box-sizing:content-box;display:block;margin:0;border:0;padding:0";
5659 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ marginDiv.style.marginRight = marginDiv.style.width = "0";
5660 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div.style.width = "1px";
5661 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.appendChild( container );
5662  
5663 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = !parseFloat( window.getComputedStyle( marginDiv, null ).marginRight );
5664  
5665 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.removeChild( container );
5666  
5667 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret;
5668 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5669 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5670 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5671 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/})();
5672  
5673  
5674 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// A method for quickly swapping in/out CSS properties to get correct calculations.
5675 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.swap = function( elem, options, callback, args ) {
5676 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var ret, name,
5677 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ old = {};
5678  
5679 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Remember the old values, and insert the new ones
5680 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( name in options ) {
5681 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ old[ name ] = elem.style[ name ];
5682 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.style[ name ] = options[ name ];
5683 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5684  
5685 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = callback.apply( elem, args || [] );
5686  
5687 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Revert the old values
5688 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( name in options ) {
5689 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.style[ name ] = old[ name ];
5690 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5691  
5692 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret;
5693 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
5694  
5695  
5696 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var
5697 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
5698 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
5699 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rdisplayswap = /^(none|table(?!-c[ea]).+)/,
5700 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ),
5701 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ),
5702  
5703 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssShow = { position: "absolute", visibility: "hidden", display: "block" },
5704 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssNormalTransform = {
5705 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ letterSpacing: "0",
5706 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fontWeight: "400"
5707 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5708  
5709 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
5710  
5711 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// return a css property mapped to a potentially vendor prefixed property
5712 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function vendorPropName( style, name ) {
5713  
5714 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // shortcut for names that are not vendor prefixed
5715 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( name in style ) {
5716 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return name;
5717 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5718  
5719 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // check for vendor prefixed names
5720 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var capName = name[0].toUpperCase() + name.slice(1),
5721 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ origName = name,
5722 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = cssPrefixes.length;
5723  
5724 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ while ( i-- ) {
5725 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name = cssPrefixes[ i ] + capName;
5726 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( name in style ) {
5727 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return name;
5728 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5729 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5730  
5731 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return origName;
5732 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5733  
5734 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function setPositiveNumber( elem, value, subtract ) {
5735 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var matches = rnumsplit.exec( value );
5736 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return matches ?
5737 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Guard against undefined "subtract", e.g., when used as in cssHooks
5738 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
5739 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value;
5740 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5741  
5742 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
5743 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var i = extra === ( isBorderBox ? "border" : "content" ) ?
5744 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // If we already have the right measurement, avoid augmentation
5745 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ 4 :
5746 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Otherwise initialize for horizontal or vertical properties
5747 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name === "width" ? 1 : 0,
5748  
5749 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = 0;
5750  
5751 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i < 4; i += 2 ) {
5752 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // both box models exclude margin, so add it if we want it
5753 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra === "margin" ) {
5754 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
5755 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5756  
5757 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isBorderBox ) {
5758 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // border-box includes padding, so remove it if we want content
5759 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra === "content" ) {
5760 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
5761 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5762  
5763 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // at this point, extra isn't border nor margin, so remove border
5764 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra !== "margin" ) {
5765 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
5766 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5767 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5768 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // at this point, extra isn't content, so add padding
5769 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
5770  
5771 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // at this point, extra isn't content nor padding, so add border
5772 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra !== "padding" ) {
5773 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
5774 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5775 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5776 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5777  
5778 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return val;
5779 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5780  
5781 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function getWidthOrHeight( elem, name, extra ) {
5782  
5783 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Start with offset property, which is equivalent to the border-box value
5784 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var valueIsBorderBox = true,
5785 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
5786 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ styles = getStyles( elem ),
5787 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
5788  
5789 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // some non-html elements return undefined for offsetWidth, so check for null/undefined
5790 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
5791 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
5792 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( val <= 0 || val == null ) {
5793 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fall back to computed then uncomputed css if necessary
5794 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = curCSS( elem, name, styles );
5795 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( val < 0 || val == null ) {
5796 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = elem.style[ name ];
5797 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5798  
5799 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Computed unit is not pixels. Stop here and return.
5800 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( rnumnonpx.test(val) ) {
5801 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return val;
5802 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5803  
5804 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // we need the check for style in case a browser which returns unreliable values
5805 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // for getComputedStyle silently falls back to the reliable elem.style
5806 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ valueIsBorderBox = isBorderBox &&
5807 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ( support.boxSizingReliable() || val === elem.style[ name ] );
5808  
5809 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Normalize "", auto, and prepare for extra
5810 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = parseFloat( val ) || 0;
5811 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5812  
5813 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // use the active box-sizing model to add/subtract irrelevant styles
5814 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ( val +
5815 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ augmentWidthOrHeight(
5816 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem,
5817 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name,
5818 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ extra || ( isBorderBox ? "border" : "content" ),
5819 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ valueIsBorderBox,
5820 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ styles
5821 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ )
5822 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ) + "px";
5823 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5824  
5825 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function showHide( elements, show ) {
5826 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var display, elem, hidden,
5827 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ values = [],
5828 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ index = 0,
5829 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ length = elements.length;
5830  
5831 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; index < length; index++ ) {
5832 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = elements[ index ];
5833 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !elem.style ) {
5834 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ continue;
5835 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5836  
5837 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ values[ index ] = data_priv.get( elem, "olddisplay" );
5838 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ display = elem.style.display;
5839 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( show ) {
5840 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Reset the inline display of this element to learn if it is
5841 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // being hidden by cascaded rules or not
5842 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !values[ index ] && display === "none" ) {
5843 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.style.display = "";
5844 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5845  
5846 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Set elements which have been overridden with display: none
5847 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // in a stylesheet to whatever the default browser style is
5848 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // for such an element
5849 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem.style.display === "" && isHidden( elem ) ) {
5850 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ values[ index ] = data_priv.access( elem, "olddisplay", defaultDisplay(elem.nodeName) );
5851 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5852 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5853 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hidden = isHidden( elem );
5854  
5855 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( display !== "none" || !hidden ) {
5856 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ data_priv.set( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) );
5857 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5858 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5859 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5860  
5861 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Set the display of most of the elements in a second loop
5862 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // to avoid the constant reflow
5863 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( index = 0; index < length; index++ ) {
5864 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = elements[ index ];
5865 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !elem.style ) {
5866 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ continue;
5867 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5868 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
5869 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.style.display = show ? values[ index ] || "" : "none";
5870 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5871 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5872  
5873 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elements;
5874 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5875  
5876 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.extend({
5877 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Add in style property hooks for overriding the default
5878 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // behavior of getting and setting a style property
5879 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssHooks: {
5880 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ opacity: {
5881 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ get: function( elem, computed ) {
5882 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5883 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // We should always get a number back from opacity
5884 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var ret = curCSS( elem, "opacity" );
5885 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret === "" ? "1" : ret;
5886 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5887 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5888 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5889 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5890  
5891 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Don't automatically add "px" to these possibly-unitless properties
5892 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssNumber: {
5893 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "columnCount": true,
5894 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "fillOpacity": true,
5895 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "flexGrow": true,
5896 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "flexShrink": true,
5897 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "fontWeight": true,
5898 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "lineHeight": true,
5899 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "opacity": true,
5900 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "order": true,
5901 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "orphans": true,
5902 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "widows": true,
5903 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "zIndex": true,
5904 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "zoom": true
5905 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5906  
5907 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Add in properties whose names you wish to fix before
5908 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // setting or getting the value
5909 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssProps: {
5910 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // normalize float css property
5911 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "float": "cssFloat"
5912 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5913  
5914 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Get and set the style property on a DOM Node
5915 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style: function( elem, name, value, extra ) {
5916 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Don't set styles on text and comment nodes
5917 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
5918 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
5919 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5920  
5921 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Make sure that we're working with the right name
5922 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var ret, type, hooks,
5923 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ origName = jQuery.camelCase( name ),
5924 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style = elem.style;
5925  
5926 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
5927  
5928 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // gets hook for the prefixed version
5929 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // followed by the unprefixed version
5930 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
5931  
5932 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Check if we're setting a value
5933 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( value !== undefined ) {
5934 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ type = typeof value;
5935  
5936 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // convert relative number strings (+= or -=) to relative numbers. #7345
5937 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( type === "string" && (ret = rrelNum.exec( value )) ) {
5938 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
5939 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fixes bug #9237
5940 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ type = "number";
5941 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5942  
5943 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Make sure that null and NaN values aren't set. See: #7116
5944 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( value == null || value !== value ) {
5945 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
5946 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5947  
5948 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // If a number was passed in, add 'px' to the (except for certain CSS properties)
5949 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
5950 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value += "px";
5951 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5952  
5953 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fixes #8908, it can be done more correctly by specifying setters in cssHooks,
5954 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // but it would mean to define eight (for every problematic property) identical functions
5955 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
5956 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style[ name ] = "inherit";
5957 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5958  
5959 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // If a hook was provided, use that value, otherwise just set the specified value
5960 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
5961 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style[ name ] = value;
5962 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5963  
5964 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5965 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // If a hook was provided get the non-computed value from there
5966 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
5967 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret;
5968 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5969  
5970 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Otherwise just get the value from the style object
5971 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return style[ name ];
5972 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5973 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5974  
5975 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ css: function( elem, name, extra, styles ) {
5976 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var val, num, hooks,
5977 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ origName = jQuery.camelCase( name );
5978  
5979 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Make sure that we're working with the right name
5980 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
5981  
5982 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // gets hook for the prefixed version
5983 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // followed by the unprefixed version
5984 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
5985  
5986 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // If a hook was provided get the computed value from there
5987 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( hooks && "get" in hooks ) {
5988 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = hooks.get( elem, true, extra );
5989 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5990  
5991 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Otherwise, if a way to get the computed value exists, use that
5992 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( val === undefined ) {
5993 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = curCSS( elem, name, styles );
5994 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5995  
5996 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ //convert "normal" to computed value
5997 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( val === "normal" && name in cssNormalTransform ) {
5998 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = cssNormalTransform[ name ];
5999 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6000  
6001 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Return, converting to number if forced or a qualifier was provided and val looks numeric
6002 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra === "" || extra ) {
6003 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ num = parseFloat( val );
6004 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
6005 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6006 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return val;
6007 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6008 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
6009  
6010 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.each([ "height", "width" ], function( i, name ) {
6011 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cssHooks[ name ] = {
6012 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ get: function( elem, computed, extra ) {
6013 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
6014 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // certain elements can have dimension info if we invisibly show them
6015 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // however, it must have a current display style that would benefit from this
6016 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return rdisplayswap.test( jQuery.css( elem, "display" ) ) && elem.offsetWidth === 0 ?
6017 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.swap( elem, cssShow, function() {
6018 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return getWidthOrHeight( elem, name, extra );
6019 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }) :
6020 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ getWidthOrHeight( elem, name, extra );
6021 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6022 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6023  
6024 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ set: function( elem, value, extra ) {
6025 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var styles = extra && getStyles( elem );
6026 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return setPositiveNumber( elem, value, extra ?
6027 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ augmentWidthOrHeight(
6028 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem,
6029 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name,
6030 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ extra,
6031 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
6032 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ styles
6033 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ) : 0
6034 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ );
6035 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6036 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
6037 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
6038  
6039 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: Android 2.3
6040 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
6041 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ function( elem, computed ) {
6042 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
6043 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
6044 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Work around by temporarily setting element display to inline-block
6045 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return jQuery.swap( elem, { "display": "inline-block" },
6046 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ curCSS, [ elem, "marginRight" ] );
6047 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6048 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6049 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/);
6050  
6051 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// These hooks are used by animate to expand properties
6052 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.each({
6053 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ margin: "",
6054 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ padding: "",
6055 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ border: "Width"
6056 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}, function( prefix, suffix ) {
6057 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cssHooks[ prefix + suffix ] = {
6058 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ expand: function( value ) {
6059 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var i = 0,
6060 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ expanded = {},
6061  
6062 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // assumes a single number if not a string
6063 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ parts = typeof value === "string" ? value.split(" ") : [ value ];
6064  
6065 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i < 4; i++ ) {
6066 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ expanded[ prefix + cssExpand[ i ] + suffix ] =
6067 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
6068 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6069  
6070 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return expanded;
6071 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6072 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
6073  
6074 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !rmargin.test( prefix ) ) {
6075 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
6076 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6077 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
6078  
6079 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.fn.extend({
6080 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ css: function( name, value ) {
6081 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return access( this, function( elem, name, value ) {
6082 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var styles, len,
6083 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ map = {},
6084 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
6085  
6086 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( jQuery.isArray( name ) ) {
6087 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ styles = getStyles( elem );
6088 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ len = name.length;
6089  
6090 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( ; i < len; i++ ) {
6091 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
6092 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6093  
6094 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return map;
6095 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6096  
6097 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return value !== undefined ?
6098 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.style( elem, name, value ) :
6099 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.css( elem, name );
6100 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }, name, value, arguments.length > 1 );
6101 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6102 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ show: function() {
6103 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return showHide( this, true );
6104 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6105 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hide: function() {
6106 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return showHide( this );
6107 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6108 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ toggle: function( state ) {
6109 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( typeof state === "boolean" ) {
6110 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return state ? this.show() : this.hide();
6111 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6112  
6113 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this.each(function() {
6114 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isHidden( this ) ) {
6115 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery( this ).show();
6116 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6117 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery( this ).hide();
6118 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6119 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
6120 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6121 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
6122  
6123  
6124 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function Tween( elem, options, prop, end, easing ) {
6125 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return new Tween.prototype.init( elem, options, prop, end, easing );
6126 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
6127 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.Tween = Tween;
6128  
6129 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/Tween.prototype = {
6130 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ constructor: Tween,
6131 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ init: function( elem, options, prop, end, easing, unit ) {
6132 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.elem = elem;
6133 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.prop = prop;
6134 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.easing = easing || "swing";
6135 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.options = options;
6136 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.start = this.now = this.cur();
6137 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.end = end;
6138 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
6139 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6140 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cur: function() {
6141 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var hooks = Tween.propHooks[ this.prop ];
6142  
6143 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return hooks && hooks.get ?
6144 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hooks.get( this ) :
6145 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ Tween.propHooks._default.get( this );
6146 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6147 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ run: function( percent ) {
6148 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var eased,
6149 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hooks = Tween.propHooks[ this.prop ];
6150  
6151 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.options.duration ) {
6152 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.pos = eased = jQuery.easing[ this.easing ](
6153 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ percent, this.options.duration * percent, 0, 1, this.options.duration
6154 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ );
6155 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6156 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.pos = eased = percent;
6157 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6158 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.now = ( this.end - this.start ) * eased + this.start;
6159  
6160 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.options.step ) {
6161 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.options.step.call( this.elem, this.now, this );
6162 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6163  
6164 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( hooks && hooks.set ) {
6165 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hooks.set( this );
6166 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6167 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ Tween.propHooks._default.set( this );
6168 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6169 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
6170 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6171 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
6172  
6173 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/Tween.prototype.init.prototype = Tween.prototype;
6174  
6175 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/Tween.propHooks = {
6176 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ _default: {
6177 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ get: function( tween ) {
6178 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var result;
6179  
6180 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( tween.elem[ tween.prop ] != null &&
6181 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
6182 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return tween.elem[ tween.prop ];
6183 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6184  
6185 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // passing an empty string as a 3rd parameter to .css will automatically
6186 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // attempt a parseFloat and fallback to a string if the parse fails
6187 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // so, simple values such as "10px" are parsed to Float.
6188 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // complex values such as "rotate(1rad)" are returned as is.
6189 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ result = jQuery.css( tween.elem, tween.prop, "" );
6190 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Empty strings, null, undefined and "auto" are converted to 0.
6191 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return !result || result === "auto" ? 0 : result;
6192 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6193 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ set: function( tween ) {
6194 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // use step hook for back compat - use cssHook if its there - use .style if its
6195 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // available and use plain properties where available
6196 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( jQuery.fx.step[ tween.prop ] ) {
6197 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.fx.step[ tween.prop ]( tween );
6198 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
6199 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
6200 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6201 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tween.elem[ tween.prop ] = tween.now;
6202 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6203 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6204 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6205 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
6206  
6207 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: IE9
6208 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Panic based approach to setting things on disconnected nodes
6209  
6210 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
6211 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ set: function( tween ) {
6212 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( tween.elem.nodeType && tween.elem.parentNode ) {
6213 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tween.elem[ tween.prop ] = tween.now;
6214 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6215 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6216 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
6217  
6218 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.easing = {
6219 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ linear: function( p ) {
6220 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return p;
6221 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6222 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ swing: function( p ) {
6223 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return 0.5 - Math.cos( p * Math.PI ) / 2;
6224 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6225 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
6226  
6227 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.fx = Tween.prototype.init;
6228  
6229 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Back Compat <1.8 extension point
6230 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointjQuery.fx.step = {};
6231  
6232  
6233  
6234  
6235 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointvar
6236 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point fxNow, timerId,
6237 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point rfxtypes = /^(?:toggle|show|hide)$/,
6238 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
6239 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point rrun = /queueHooks$/,
6240 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point animationPrefilters = [ defaultPrefilter ],
6241 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point tweeners = {
6242 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point "*": [ function( prop, value ) {
6243 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var tween = this.createTween( prop, value ),
6244 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point target = tween.cur(),
6245 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point parts = rfxnum.exec( value ),
6246 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
6247  
6248 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Starting value computation is required for potential unit mismatches
6249 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
6250 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point rfxnum.exec( jQuery.css( tween.elem, prop ) ),
6251 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point scale = 1,
6252 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point maxIterations = 20;
6253  
6254 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( start && start[ 3 ] !== unit ) {
6255 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Trust units reported by jQuery.css
6256 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point unit = unit || start[ 3 ];
6257  
6258 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Make sure we update the tween properties later on
6259 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point parts = parts || [];
6260  
6261 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Iteratively approximate from a nonzero starting point
6262 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point start = +target || 1;
6263  
6264 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point do {
6265 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // If previous iteration zeroed out, double until we get *something*
6266 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Use a string for doubling factor so we don't accidentally see scale as unchanged below
6267 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point scale = scale || ".5";
6268  
6269 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Adjust and apply
6270 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point start = start / scale;
6271 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point jQuery.style( tween.elem, prop, start + unit );
6272  
6273 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Update scale, tolerating zero or NaN from tween.cur()
6274 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // And breaking the loop if scale is unchanged or perfect, or if we've just had enough
6275 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
6276 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6277  
6278 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Update tween properties
6279 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( parts ) {
6280 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point start = tween.start = +start || +target || 0;
6281 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point tween.unit = unit;
6282 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // If a +=/-= token was provided, we're doing a relative animation
6283 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point tween.end = parts[ 1 ] ?
6284 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
6285 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point +parts[ 2 ];
6286 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6287  
6288 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point return tween;
6289 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } ]
6290 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point };
6291  
6292 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point// Animations created synchronously will run synchronously
6293 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointfunction createFxNow() {
6294 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point setTimeout(function() {
6295 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point fxNow = undefined;
6296 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point });
6297 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point return ( fxNow = jQuery.now() );
6298 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point}
6299  
6300 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point// Generate parameters to create a standard animation
6301 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointfunction genFx( type, includeWidth ) {
6302 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var which,
6303 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point i = 0,
6304 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point attrs = { height: type };
6305  
6306 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // if we include width, step value is 1 to do all cssExpand values,
6307 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // if we don't include width, step value is 2 to skip over Left and Right
6308 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point includeWidth = includeWidth ? 1 : 0;
6309 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( ; i < 4 ; i += 2 - includeWidth ) {
6310 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point which = cssExpand[ i ];
6311 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
6312 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6313  
6314 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( includeWidth ) {
6315 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point attrs.opacity = attrs.width = type;
6316 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6317  
6318 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point return attrs;
6319 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point}
6320  
6321 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointfunction createTween( value, prop, animation ) {
6322 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var tween,
6323 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
6324 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point index = 0,
6325 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point length = collection.length;
6326 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( ; index < length; index++ ) {
6327 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( (tween = collection[ index ].call( animation, prop, value )) ) {
6328  
6329 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // we're done with this property
6330 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point return tween;
6331 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6332 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6333 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point}
6334  
6335 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointfunction defaultPrefilter( elem, props, opts ) {
6336 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point /* jshint validthis: true */
6337 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
6338 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point anim = this,
6339 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point orig = {},
6340 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point style = elem.style,
6341 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hidden = elem.nodeType && isHidden( elem ),
6342 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point dataShow = data_priv.get( elem, "fxshow" );
6343  
6344 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // handle queue: false promises
6345 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( !opts.queue ) {
6346 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hooks = jQuery._queueHooks( elem, "fx" );
6347 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( hooks.unqueued == null ) {
6348 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hooks.unqueued = 0;
6349 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point oldfire = hooks.empty.fire;
6350 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hooks.empty.fire = function() {
6351 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( !hooks.unqueued ) {
6352 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point oldfire();
6353 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6354 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point };
6355 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6356 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hooks.unqueued++;
6357  
6358 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point anim.always(function() {
6359 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // doing this makes sure that the complete handler will be called
6360 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // before this completes
6361 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point anim.always(function() {
6362 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hooks.unqueued--;
6363 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( !jQuery.queue( elem, "fx" ).length ) {
6364 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hooks.empty.fire();
6365 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6366 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point });
6367 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point });
6368 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6369  
6370 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // height/width overflow pass
6371 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
6372 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Make sure that nothing sneaks out
6373 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Record all 3 overflow attributes because IE9-10 do not
6374 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // change the overflow attribute when overflowX and
6375 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // overflowY are set to the same value
6376 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
6377  
6378 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Set display property to inline-block for height/width
6379 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // animations on inline elements that are having width/height animated
6380 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point display = jQuery.css( elem, "display" );
6381  
6382 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Test default display if display is currently "none"
6383 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point checkDisplay = display === "none" ?
6384 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point data_priv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
6385  
6386 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
6387 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point style.display = "inline-block";
6388 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6389 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6390  
6391 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( opts.overflow ) {
6392 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point style.overflow = "hidden";
6393 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point anim.always(function() {
6394 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point style.overflow = opts.overflow[ 0 ];
6395 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point style.overflowX = opts.overflow[ 1 ];
6396 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point style.overflowY = opts.overflow[ 2 ];
6397 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point });
6398 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6399  
6400 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // show/hide pass
6401 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( prop in props ) {
6402 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point value = props[ prop ];
6403 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( rfxtypes.exec( value ) ) {
6404 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point delete props[ prop ];
6405 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point toggle = toggle || value === "toggle";
6406 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( value === ( hidden ? "hide" : "show" ) ) {
6407  
6408 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
6409 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
6410 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hidden = true;
6411 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } else {
6412 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point continue;
6413 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6414 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6415 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
6416  
6417 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // Any non-fx value stops us from restoring the original display value
6418 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } else {
6419 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point display = undefined;
6420 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6421 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6422  
6423 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( !jQuery.isEmptyObject( orig ) ) {
6424 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( dataShow ) {
6425 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( "hidden" in dataShow ) {
6426 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hidden = dataShow.hidden;
6427 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6428 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } else {
6429 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point dataShow = data_priv.access( elem, "fxshow", {} );
6430 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6431  
6432 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // store state if its toggle - enables .stop().toggle() to "reverse"
6433 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( toggle ) {
6434 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point dataShow.hidden = !hidden;
6435 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6436 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( hidden ) {
6437 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point jQuery( elem ).show();
6438 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } else {
6439 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point anim.done(function() {
6440 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point jQuery( elem ).hide();
6441 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point });
6442 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6443 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point anim.done(function() {
6444 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var prop;
6445  
6446 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point data_priv.remove( elem, "fxshow" );
6447 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( prop in orig ) {
6448 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point jQuery.style( elem, prop, orig[ prop ] );
6449 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6450 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point });
6451 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( prop in orig ) {
6452 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
6453  
6454 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( !( prop in dataShow ) ) {
6455 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point dataShow[ prop ] = tween.start;
6456 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( hidden ) {
6457 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point tween.end = tween.start;
6458 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point tween.start = prop === "width" || prop === "height" ? 1 : 0;
6459 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6460 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6461 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6462  
6463 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // If this is a noop like .hide().hide(), restore an overwritten display value
6464 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
6465 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point style.display = display;
6466 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6467 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point}
6468  
6469 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointfunction propFilter( props, specialEasing ) {
6470 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var index, name, easing, value, hooks;
6471  
6472 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // camelCase, specialEasing and expand cssHook pass
6473 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( index in props ) {
6474 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point name = jQuery.camelCase( index );
6475 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point easing = specialEasing[ name ];
6476 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point value = props[ index ];
6477 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( jQuery.isArray( value ) ) {
6478 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point easing = value[ 1 ];
6479 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point value = props[ index ] = value[ 0 ];
6480 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6481  
6482 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( index !== name ) {
6483 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point props[ name ] = value;
6484 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point delete props[ index ];
6485 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6486  
6487 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point hooks = jQuery.cssHooks[ name ];
6488 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( hooks && "expand" in hooks ) {
6489 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point value = hooks.expand( value );
6490 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point delete props[ name ];
6491  
6492 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // not quite $.extend, this wont overwrite keys already present.
6493 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // also - reusing 'index' from above because we have the correct "name"
6494 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( index in value ) {
6495 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( !( index in props ) ) {
6496 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point props[ index ] = value[ index ];
6497 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point specialEasing[ index ] = easing;
6498 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6499 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6500 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point } else {
6501 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point specialEasing[ name ] = easing;
6502 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6503 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6504 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point}
6505  
6506 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension pointfunction Animation( elem, properties, options ) {
6507 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var result,
6508 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point stopped,
6509 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point index = 0,
6510 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point length = animationPrefilters.length,
6511 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point deferred = jQuery.Deferred().always( function() {
6512 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // don't match elem in the :animated selector
6513 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point delete tick.elem;
6514 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }),
6515 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point tick = function() {
6516 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point if ( stopped ) {
6517 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point return false;
6518 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6519 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point var currentTime = fxNow || createFxNow(),
6520 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
6521 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
6522 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point temp = remaining / animation.duration || 0,
6523 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point percent = 1 - temp,
6524 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point index = 0,
6525 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point length = animation.tweens.length;
6526  
6527 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point for ( ; index < length ; index++ ) {
6528 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) { animation.tweens[ index ].run( percent );
6529 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) { }
6530  
6531 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) { deferred.notifyWith( elem, [ animation, percent, remaining ]);
6532  
6533 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) { if ( percent < 1 && length ) {
6534 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { return remaining;
6535 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { } else {
6536 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { deferred.resolveWith( elem, [ animation ] );
6537 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { return false;
6538 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { }
6539 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { },
6540 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { animation = deferred.promise({
6541 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { elem: elem,
6542 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { props: jQuery.extend( {}, properties ),
6543 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { opts: jQuery.extend( true, { specialEasing: {} }, options ),
6544 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { originalProperties: properties,
6545 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { originalOptions: options,
6546 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { startTime: fxNow || createFxNow(),
6547 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { duration: options.duration,
6548 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { tweens: [],
6549 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { createTween: function( prop, end ) {
6550 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { var tween = jQuery.Tween( elem, animation.opts, prop, end,
6551 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { animation.opts.specialEasing[ prop ] || animation.opts.easing );
6552 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { animation.tweens.push( tween );
6553 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { return tween;
6554 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { },
6555 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { stop: function( gotoEnd ) {
6556 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { var index = 0,
6557 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { // if we are going to the end, we want to run all the tweens
6558 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { // otherwise we skip this part
6559 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { length = gotoEnd ? animation.tweens.length : 0;
6560 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { if ( stopped ) {
6561 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { return this;
6562 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { }
6563 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { stopped = true;
6564 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { for ( ; index < length ; index++ ) {
6565 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { animation.tweens[ index ].run( 1 );
6566 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }
6567  
6568 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { // resolve when we played the last frame
6569 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { // otherwise, reject
6570 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { if ( gotoEnd ) {
6571 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { deferred.resolveWith( elem, [ animation, gotoEnd ] );
6572 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { } else {
6573 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { deferred.rejectWith( elem, [ animation, gotoEnd ] );
6574 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }
6575 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { return this;
6576 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }
6577 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }),
6578 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { props = animation.props;
6579  
6580 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { propFilter( props, animation.opts.specialEasing );
6581  
6582 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) { for ( ; index < length ; index++ ) {
6583 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
6584 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { if ( result ) {
6585 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { return result;
6586 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { }
6587 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { }
6588  
6589 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { jQuery.map( props, createTween, animation );
6590  
6591 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { if ( jQuery.isFunction( animation.opts.start ) ) {
6592 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { animation.opts.start.call( elem, animation );
6593 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { }
6594  
6595 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { jQuery.fx.timer(
6596 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { jQuery.extend( tick, {
6597 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { elem: elem,
6598 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { anim: animation,
6599 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { queue: animation.opts.queue
6600 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { })
6601 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { );
6602  
6603 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { // attach callbacks from options
6604 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { return animation.progress( animation.opts.progress )
6605 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { .done( animation.opts.done, animation.opts.complete )
6606 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { .fail( animation.opts.fail )
6607 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { .always( animation.opts.always );
6608 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {}
6609  
6610 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {jQuery.Animation = jQuery.extend( Animation, {
6611  
6612 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { tweener: function( props, callback ) {
6613 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { if ( jQuery.isFunction( props ) ) {
6614 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { callback = props;
6615 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { props = [ "*" ];
6616 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { } else {
6617 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { props = props.split(" ");
6618 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { }
6619  
6620 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { var prop,
6621 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { index = 0,
6622 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { length = props.length;
6623  
6624 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { for ( ; index < length ; index++ ) {
6625 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { prop = props[ index ];
6626 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { tweeners[ prop ] = tweeners[ prop ] || [];
6627 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { tweeners[ prop ].unshift( callback );
6628 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6629 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { },
6630  
6631 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { prefilter: function( callback, prepend ) {
6632 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( prepend ) {
6633 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { animationPrefilters.unshift( callback );
6634 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { } else {
6635 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { animationPrefilters.push( callback );
6636 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6637 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6638 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {});
6639  
6640 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {jQuery.speed = function( speed, easing, fn ) {
6641 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
6642 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { complete: fn || !fn && easing ||
6643 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { jQuery.isFunction( speed ) && speed,
6644 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { duration: speed,
6645 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
6646 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { };
6647  
6648 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
6649 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
6650  
6651 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // normalize opt.queue - true/undefined/null -> "fx"
6652 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( opt.queue == null || opt.queue === true ) {
6653 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { opt.queue = "fx";
6654 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6655  
6656 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // Queueing
6657 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { opt.old = opt.complete;
6658  
6659 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { opt.complete = function() {
6660 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( jQuery.isFunction( opt.old ) ) {
6661 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { opt.old.call( this );
6662 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6663  
6664 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( opt.queue ) {
6665 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { jQuery.dequeue( this, opt.queue );
6666 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6667 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { };
6668  
6669 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { return opt;
6670 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {};
6671  
6672 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {jQuery.fn.extend({
6673 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { fadeTo: function( speed, to, easing, callback ) {
6674  
6675 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // show any hidden elements after setting opacity to 0
6676 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { return this.filter( isHidden ).css( "opacity", 0 ).show()
6677  
6678 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // animate to the value specified
6679 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { .end().animate({ opacity: to }, speed, easing, callback );
6680 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { },
6681 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { animate: function( prop, speed, easing, callback ) {
6682 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { var empty = jQuery.isEmptyObject( prop ),
6683 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { optall = jQuery.speed( speed, easing, callback ),
6684 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { doAnimation = function() {
6685 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // Operate on a copy of prop so per-property easing won't be lost
6686 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { var anim = Animation( this, jQuery.extend( {}, prop ), optall );
6687  
6688 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // Empty animations, or finishing resolves immediately
6689 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( empty || data_priv.get( this, "finish" ) ) {
6690 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { anim.stop( true );
6691 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6692 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { };
6693 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { doAnimation.finish = doAnimation;
6694  
6695 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { return empty || optall.queue === false ?
6696 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { this.each( doAnimation ) :
6697 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { this.queue( optall.queue, doAnimation );
6698 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { },
6699 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { stop: function( type, clearQueue, gotoEnd ) {
6700 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { var stopQueue = function( hooks ) {
6701 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { var stop = hooks.stop;
6702 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { delete hooks.stop;
6703 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { stop( gotoEnd );
6704 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { };
6705  
6706 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( typeof type !== "string" ) {
6707 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { gotoEnd = clearQueue;
6708 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { clearQueue = type;
6709 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { type = undefined;
6710 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6711 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( clearQueue && type !== false ) {
6712 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { this.queue( type || "fx", [] );
6713 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6714  
6715 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { return this.each(function() {
6716 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { var dequeue = true,
6717 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { index = type != null && type + "queueHooks",
6718 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { timers = jQuery.timers,
6719 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { data = data_priv.get( this );
6720  
6721 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( index ) {
6722 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( data[ index ] && data[ index ].stop ) {
6723 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { stopQueue( data[ index ] );
6724 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6725 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { } else {
6726 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { for ( index in data ) {
6727 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
6728 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { stopQueue( data[ index ] );
6729 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6730 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6731 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6732  
6733 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { for ( index = timers.length; index--; ) {
6734 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
6735 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { timers[ index ].anim.stop( gotoEnd );
6736 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { dequeue = false;
6737 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { timers.splice( index, 1 );
6738 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6739 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6740  
6741 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // start the next in the queue if the last step wasn't forced
6742 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // timers currently will call their complete callbacks, which will dequeue
6743 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // but only if they were gotoEnd
6744 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( dequeue || !gotoEnd ) {
6745 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { jQuery.dequeue( this, type );
6746 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6747 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { });
6748 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { },
6749 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { finish: function( type ) {
6750 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( type !== false ) {
6751 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { type = type || "fx";
6752 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6753 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { return this.each(function() {
6754 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { var index,
6755 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { data = data_priv.get( this ),
6756 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { queue = data[ type + "queue" ],
6757 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { hooks = data[ type + "queueHooks" ],
6758 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { timers = jQuery.timers,
6759 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { length = queue ? queue.length : 0;
6760  
6761 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // enable finishing flag on private data
6762 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { data.finish = true;
6763  
6764 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // empty the queue first
6765 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { jQuery.queue( this, type, [] );
6766  
6767 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( hooks && hooks.stop ) {
6768 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { hooks.stop.call( this, true );
6769 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6770  
6771 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // look for any active animations, and finish them
6772 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { for ( index = timers.length; index--; ) {
6773 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
6774 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { timers[ index ].anim.stop( true );
6775 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { timers.splice( index, 1 );
6776 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6777 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6778  
6779 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { // look for any animations in the old queue and finish them
6780 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { for ( index = 0; index < length; index++ ) {
6781 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) {
6782 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { queue[ index ].finish.call( this );
6783 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { }
6784 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { }
6785  
6786 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { // turn off finishing flag
6787 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { delete data.finish;
6788 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { });
6789 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { }
6790 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {});
6791  
6792 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
6793 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { var cssFn = jQuery.fn[ name ];
6794 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { jQuery.fn[ name ] = function( speed, easing, callback ) {
6795 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { return speed == null || typeof speed === "boolean" ?
6796 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { cssFn.apply( this, arguments ) :
6797 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { this.animate( genFx( name, true ), speed, easing, callback );
6798 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { };
6799 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {});
6800  
6801 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {// Generate shortcuts for custom animations
6802 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {jQuery.each({
6803 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { slideDown: genFx("show"),
6804 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { slideUp: genFx("hide"),
6805 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { slideToggle: genFx("toggle"),
6806 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { fadeIn: { opacity: "show" },
6807 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { fadeOut: { opacity: "hide" },
6808 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { fadeToggle: { opacity: "toggle" }
6809 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {}, function( name, props ) {
6810 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { jQuery.fn[ name ] = function( speed, easing, callback ) {
6811 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { return this.animate( props, speed, easing, callback );
6812 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { };
6813 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {});
6814  
6815 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {jQuery.timers = [];
6816 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {jQuery.fx.tick = function() {
6817 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { var timer,
6818 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { i = 0,
6819 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { timers = jQuery.timers;
6820  
6821 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { fxNow = jQuery.now();
6822  
6823 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { for ( ; i < timers.length; i++ ) {
6824 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { timer = timers[ i ];
6825 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Checks the timer has not already been removed
6826 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timer() && timers[ i ] === timer ) {
6827 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { timers.splice( i--, 1 );
6828 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6829 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6830  
6831 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timers.length ) {
6832 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fx.stop();
6833 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6834 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { fxNow = undefined;
6835 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
6836  
6837 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.timer = function( timer ) {
6838 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.timers.push( timer );
6839 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( timer() ) {
6840 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fx.start();
6841 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
6842 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.timers.pop();
6843 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6844 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
6845  
6846 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.interval = 13;
6847  
6848 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.start = function() {
6849 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timerId ) {
6850 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
6851 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6852 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
6853  
6854 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.stop = function() {
6855 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { clearInterval( timerId );
6856 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { timerId = null;
6857 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
6858  
6859 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.speeds = {
6860 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { slow: 600,
6861 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { fast: 200,
6862 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Default speed
6863 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { _default: 400
6864 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
6865  
6866  
6867 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Based off of the plugin by Clint Helfers, with permission.
6868 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// http://blindsignals.com/index.php/2009/07/jquery-delay/
6869 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.delay = function( time, type ) {
6870 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
6871 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = type || "fx";
6872  
6873 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.queue( type, function( next, hooks ) {
6874 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var timeout = setTimeout( next, time );
6875 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks.stop = function() {
6876 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { clearTimeout( timeout );
6877 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
6878 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
6879 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
6880  
6881  
6882 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {(function() {
6883 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var input = document.createElement( "input" ),
6884 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { select = document.createElement( "select" ),
6885 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { opt = select.appendChild( document.createElement( "option" ) );
6886  
6887 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { input.type = "checkbox";
6888  
6889 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: iOS 5.1, Android 4.x, Android 2.3
6890 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check the default checkbox/radio value ("" on old WebKit; "on" elsewhere)
6891 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { support.checkOn = input.value !== "";
6892  
6893 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Must access the parent to make an option select properly
6894 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE9, IE10
6895 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { support.optSelected = opt.selected;
6896  
6897 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Make sure that the options inside disabled selects aren't marked as disabled
6898 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // (WebKit marks them as disabled)
6899 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { select.disabled = true;
6900 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { support.optDisabled = !opt.disabled;
6901  
6902 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check if an input maintains its value after becoming a radio
6903 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE9, IE10
6904 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { input = document.createElement( "input" );
6905 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { input.value = "t";
6906 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { input.type = "radio";
6907 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { support.radioValue = input.value === "t";
6908 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {})();
6909  
6910  
6911 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var nodeHook, boolHook,
6912 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle = jQuery.expr.attrHandle;
6913  
6914 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
6915 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attr: function( name, value ) {
6916 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, jQuery.attr, name, value, arguments.length > 1 );
6917 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
6918  
6919 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeAttr: function( name ) {
6920 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function() {
6921 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.removeAttr( this, name );
6922 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
6923 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6924 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
6925  
6926 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend({
6927 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attr: function( elem, name, value ) {
6928 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var hooks, ret,
6929 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { nType = elem.nodeType;
6930  
6931 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // don't get/set attributes on text, comment and attribute nodes
6932 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
6933 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
6934 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6935  
6936 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fallback to prop when attributes are not supported
6937 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof elem.getAttribute === strundefined ) {
6938 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.prop( elem, name, value );
6939 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6940  
6941 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // All attributes are lowercase
6942 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Grab necessary hook if one is defined
6943 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
6944 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { name = name.toLowerCase();
6945 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.attrHooks[ name ] ||
6946 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
6947 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6948  
6949 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value !== undefined ) {
6950  
6951 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value === null ) {
6952 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.removeAttr( elem, name );
6953  
6954 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
6955 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
6956  
6957 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
6958 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( name, value + "" );
6959 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value;
6960 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6961  
6962 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
6963 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
6964  
6965 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
6966 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret = jQuery.find.attr( elem, name );
6967  
6968 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Non-existent attributes return null, we normalize to undefined
6969 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret == null ?
6970 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { undefined :
6971 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret;
6972 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6973 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
6974  
6975 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeAttr: function( elem, value ) {
6976 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var name, propName,
6977 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
6978 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrNames = value && value.match( rnotwhite );
6979  
6980 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( attrNames && elem.nodeType === 1 ) {
6981 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( (name = attrNames[i++]) ) {
6982 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { propName = jQuery.propFix[ name ] || name;
6983  
6984 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Boolean attributes get special treatment (#10870)
6985 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.expr.match.bool.test( name ) ) {
6986 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set corresponding property to false
6987 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ propName ] = false;
6988 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6989  
6990 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.removeAttribute( name );
6991 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6992 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6993 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
6994  
6995 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHooks: {
6996 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: {
6997 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value ) {
6998 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !support.radioValue && value === "radio" &&
6999 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.nodeName( elem, "input" ) ) {
7000 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Setting the type on a radio button after the value resets the value in IE6-9
7001 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Reset value to default in case type is set after value during creation
7002 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val = elem.value;
7003 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( "type", value );
7004 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( val ) {
7005 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.value = val;
7006 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7007 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value;
7008 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7009 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7010 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7011 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7012 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7013  
7014 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Hooks for boolean attributes
7015 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {boolHook = {
7016 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value, name ) {
7017 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value === false ) {
7018 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove boolean attributes when set to false
7019 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.removeAttr( elem, name );
7020 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7021 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.setAttribute( name, name );
7022 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7023 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return name;
7024 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7025 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7026 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
7027 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var getter = attrHandle[ name ] || jQuery.find.attr;
7028  
7029 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle[ name ] = function( elem, name, isXML ) {
7030 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var ret, handle;
7031 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !isXML ) {
7032 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Avoid an infinite loop by temporarily removing this function from the getter
7033 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { handle = attrHandle[ name ];
7034 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle[ name ] = ret;
7035 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret = getter( elem, name, isXML ) != null ?
7036 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { name.toLowerCase() :
7037 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { null;
7038 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { attrHandle[ name ] = handle;
7039 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7040 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7041 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7042 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7043  
7044  
7045  
7046  
7047 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rfocusable = /^(?:input|select|textarea|button)$/i;
7048  
7049 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
7050 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { prop: function( name, value ) {
7051 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, jQuery.prop, name, value, arguments.length > 1 );
7052 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7053  
7054 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeProp: function( name ) {
7055 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function() {
7056 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { delete this[ jQuery.propFix[ name ] || name ];
7057 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7058 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7059 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7060  
7061 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend({
7062 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { propFix: {
7063 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "for": "htmlFor",
7064 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "class": "className"
7065 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7066  
7067 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { prop: function( elem, name, value ) {
7068 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var ret, hooks, notxml,
7069 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { nType = elem.nodeType;
7070  
7071 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // don't get/set properties on text, comment and attribute nodes
7072 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
7073 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7074 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7075  
7076 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
7077  
7078 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( notxml ) {
7079 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fix name and attach hooks
7080 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { name = jQuery.propFix[ name ] || name;
7081 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.propHooks[ name ];
7082 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7083  
7084 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( value !== undefined ) {
7085 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
7086 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret :
7087 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( elem[ name ] = value );
7088  
7089 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7090 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
7091 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret :
7092 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ name ];
7093 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7094 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7095  
7096 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { propHooks: {
7097 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { tabIndex: {
7098 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7099 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem.hasAttribute( "tabindex" ) || rfocusable.test( elem.nodeName ) || elem.href ?
7100 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.tabIndex :
7101 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { -1;
7102 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7103 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7104 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7105 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7106  
7107 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: IE9+
7108 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Selectedness for an option in an optgroup can be inaccurate
7109 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( !support.optSelected ) {
7110 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.propHooks.selected = {
7111 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7112 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var parent = elem.parentNode;
7113 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( parent && parent.parentNode ) {
7114 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parent.parentNode.selectedIndex;
7115 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7116 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return null;
7117 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7118 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7119 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7120  
7121 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each([
7122 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "tabIndex",
7123 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "readOnly",
7124 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "maxLength",
7125 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "cellSpacing",
7126 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "cellPadding",
7127 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "rowSpan",
7128 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "colSpan",
7129 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "useMap",
7130 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "frameBorder",
7131 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "contentEditable"
7132 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {], function() {
7133 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.propFix[ this.toLowerCase() ] = this;
7134 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7135  
7136  
7137  
7138  
7139 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rclass = /[\t\r\n\f]/g;
7140  
7141 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
7142 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { addClass: function( value ) {
7143 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var classes, elem, cur, clazz, j, finalValue,
7144 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { proceed = typeof value === "string" && value,
7145 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
7146 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { len = this.length;
7147  
7148 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( value ) ) {
7149 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function( j ) {
7150 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).addClass( value.call( this, j, this.className ) );
7151 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7152 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7153  
7154 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( proceed ) {
7155 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // The disjunction here is for better compressibility (see removeClass)
7156 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { classes = ( value || "" ).match( rnotwhite ) || [];
7157  
7158 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( ; i < len; i++ ) {
7159 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[ i ];
7160 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = elem.nodeType === 1 && ( elem.className ?
7161 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( " " + elem.className + " " ).replace( rclass, " " ) :
7162 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { " "
7163 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
7164  
7165 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( cur ) {
7166 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { j = 0;
7167 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( (clazz = classes[j++]) ) {
7168 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
7169 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur += clazz + " ";
7170 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7171 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7172  
7173 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // only assign if different to avoid unneeded rendering.
7174 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalValue = jQuery.trim( cur );
7175 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem.className !== finalValue ) {
7176 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.className = finalValue;
7177 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7178 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7179 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7180 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7181  
7182 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
7183 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7184  
7185 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { removeClass: function( value ) {
7186 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var classes, elem, cur, clazz, j, finalValue,
7187 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { proceed = arguments.length === 0 || typeof value === "string" && value,
7188 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
7189 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { len = this.length;
7190  
7191 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( value ) ) {
7192 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function( j ) {
7193 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).removeClass( value.call( this, j, this.className ) );
7194 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7195 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7196 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( proceed ) {
7197 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { classes = ( value || "" ).match( rnotwhite ) || [];
7198  
7199 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( ; i < len; i++ ) {
7200 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[ i ];
7201 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // This expression is here for better compressibility (see addClass)
7202 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = elem.nodeType === 1 && ( elem.className ?
7203 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( " " + elem.className + " " ).replace( rclass, " " ) :
7204 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ""
7205 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
7206  
7207 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( cur ) {
7208 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { j = 0;
7209 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( (clazz = classes[j++]) ) {
7210 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove *all* instances
7211 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
7212 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cur = cur.replace( " " + clazz + " ", " " );
7213 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7214 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7215  
7216 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // only assign if different to avoid unneeded rendering.
7217 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalValue = value ? jQuery.trim( cur ) : "";
7218 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem.className !== finalValue ) {
7219 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.className = finalValue;
7220 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7221 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7222 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7223 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7224  
7225 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
7226 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7227  
7228 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { toggleClass: function( value, stateVal ) {
7229 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var type = typeof value;
7230  
7231 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof stateVal === "boolean" && type === "string" ) {
7232 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return stateVal ? this.addClass( value ) : this.removeClass( value );
7233 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7234  
7235 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( value ) ) {
7236 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function( i ) {
7237 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
7238 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7239 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7240  
7241 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function() {
7242 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( type === "string" ) {
7243 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // toggle individual class names
7244 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var className,
7245 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
7246 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { self = jQuery( this ),
7247 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { classNames = value.match( rnotwhite ) || [];
7248  
7249 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( (className = classNames[ i++ ]) ) {
7250 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // check each className given, space separated list
7251 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( self.hasClass( className ) ) {
7252 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.removeClass( className );
7253 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7254 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.addClass( className );
7255 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7256 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7257  
7258 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Toggle whole class name
7259 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( type === strundefined || type === "boolean" ) {
7260 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this.className ) {
7261 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // store className if set
7262 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { data_priv.set( this, "__className__", this.className );
7263 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7264  
7265 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If the element has a class name or if we're passed "false",
7266 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // then remove the whole classname (if there was one, the above saved it).
7267 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise bring back whatever was previously saved (if anything),
7268 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // falling back to the empty string if nothing was stored.
7269 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.className = this.className || value === false ? "" : data_priv.get( this, "__className__" ) || "";
7270 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7271 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7272 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7273  
7274 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { hasClass: function( selector ) {
7275 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var className = " " + selector + " ",
7276 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
7277 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { l = this.length;
7278 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( ; i < l; i++ ) {
7279 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
7280 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return true;
7281 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7282 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7283  
7284 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return false;
7285 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7286 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7287  
7288  
7289  
7290  
7291 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rreturn = /\r/g;
7292  
7293 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
7294 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { val: function( value ) {
7295 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var hooks, ret, isFunction,
7296 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[0];
7297  
7298 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !arguments.length ) {
7299 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem ) {
7300 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
7301  
7302 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
7303 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ret;
7304 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7305  
7306 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret = elem.value;
7307  
7308 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return typeof ret === "string" ?
7309 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // handle most common string cases
7310 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret.replace(rreturn, "") :
7311 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // handle cases where value is null/undef or number
7312 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ret == null ? "" : ret;
7313 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7314  
7315 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7316 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7317  
7318 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { isFunction = jQuery.isFunction( value );
7319  
7320 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function( i ) {
7321 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val;
7322  
7323 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this.nodeType !== 1 ) {
7324 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
7325 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7326  
7327 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( isFunction ) {
7328 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = value.call( this, i, jQuery( this ).val() );
7329 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7330 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = value;
7331 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7332  
7333 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Treat null/undefined as ""; convert numbers to string
7334 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( val == null ) {
7335 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = "";
7336  
7337 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( typeof val === "number" ) {
7338 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { val += "";
7339  
7340 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( jQuery.isArray( val ) ) {
7341 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { val = jQuery.map( val, function( value ) {
7342 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value == null ? "" : value + "";
7343 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7344 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7345  
7346 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
7347  
7348 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If set returns undefined, fall back to normal setting
7349 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
7350 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.value = val;
7351 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7352 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7353 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7354 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7355  
7356 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend({
7357 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { valHooks: {
7358 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { option: {
7359 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7360 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val = jQuery.find.attr( elem, "value" );
7361 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return val != null ?
7362 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { val :
7363 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE10-11+
7364 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // option.text throws exceptions (#14686, #14858)
7365 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.trim( jQuery.text( elem ) );
7366 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7367 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7368 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { select: {
7369 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { get: function( elem ) {
7370 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var value, option,
7371 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = elem.options,
7372 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { index = elem.selectedIndex,
7373 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { one = elem.type === "select-one" || index < 0,
7374 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { values = one ? null : [],
7375 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { max = one ? index + 1 : options.length,
7376 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = index < 0 ?
7377 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { max :
7378 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { one ? index : 0;
7379  
7380 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Loop through all the selected options
7381 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( ; i < max; i++ ) {
7382 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { option = options[ i ];
7383  
7384 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // IE6-9 doesn't update selected after form reset (#2551)
7385 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ( option.selected || i === index ) &&
7386 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Don't return options that are disabled or in a disabled optgroup
7387 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( support.optDisabled ? !option.disabled : option.getAttribute( "disabled" ) === null ) &&
7388 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
7389  
7390 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get the specific value for the option
7391 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { value = jQuery( option ).val();
7392  
7393 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We don't need an array for one selects
7394 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( one ) {
7395 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value;
7396 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7397  
7398 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Multi-Selects return an array
7399 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { values.push( value );
7400 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7401 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7402  
7403 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return values;
7404 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7405  
7406 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value ) {
7407 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var optionSet, option,
7408 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = elem.options,
7409 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { values = jQuery.makeArray( value ),
7410 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = options.length;
7411  
7412 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( i-- ) {
7413 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { option = options[ i ];
7414 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( (option.selected = jQuery.inArray( option.value, values ) >= 0) ) {
7415 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { optionSet = true;
7416 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7417 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7418  
7419 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // force browsers to behave consistently when non-matching value is set
7420 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !optionSet ) {
7421 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.selectedIndex = -1;
7422 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7423 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return values;
7424 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7425 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7426 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7427 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7428  
7429 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Radios and checkboxes getter/setter
7430 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each([ "radio", "checkbox" ], function() {
7431 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.valHooks[ this ] = {
7432 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { set: function( elem, value ) {
7433 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isArray( value ) ) {
7434 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
7435 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7436 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7437 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7438 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !support.checkOn ) {
7439 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.valHooks[ this ].get = function( elem ) {
7440 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: Webkit
7441 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // "" is returned instead of "on" if a value isn't specified
7442 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem.getAttribute("value") === null ? "on" : elem.value;
7443 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7444 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7445 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7446  
7447  
7448  
7449  
7450 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Return jQuery for attributes-only inclusion
7451  
7452  
7453 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
7454 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
7455 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
7456  
7457 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle event binding
7458 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ name ] = function( data, fn ) {
7459 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return arguments.length > 0 ?
7460 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.on( name, null, data, fn ) :
7461 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.trigger( name );
7462 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7463 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7464  
7465 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
7466 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { hover: function( fnOver, fnOut ) {
7467 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
7468 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7469  
7470 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { bind: function( types, data, fn ) {
7471 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.on( types, null, data, fn );
7472 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7473 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { unbind: function( types, fn ) {
7474 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.off( types, null, fn );
7475 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7476  
7477 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { delegate: function( selector, types, data, fn ) {
7478 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.on( types, selector, data, fn );
7479 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7480 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { undelegate: function( selector, types, fn ) {
7481 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // ( namespace ) or ( selector, types [, fn] )
7482 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
7483 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7484 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
7485  
7486  
7487 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var nonce = jQuery.now();
7488  
7489 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var rquery = (/\?/);
7490  
7491  
7492  
7493 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: Android 2.3
7494 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Workaround failure to string-cast null input
7495 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.parseJSON = function( data ) {
7496 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return JSON.parse( data + "" );
7497 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7498  
7499  
7500 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Cross-browser xml parsing
7501 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.parseXML = function( data ) {
7502 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var xml, tmp;
7503 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !data || typeof data !== "string" ) {
7504 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return null;
7505 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7506  
7507 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE9
7508 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
7509 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { tmp = new DOMParser();
7510 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml = tmp.parseFromString( data, "text/xml" );
7511 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
7512 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml = undefined;
7513 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7514  
7515 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
7516 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.error( "Invalid XML: " + data );
7517 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7518 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return xml;
7519 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7520  
7521  
7522 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var
7523 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Document location
7524 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxLocParts,
7525 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxLocation,
7526  
7527 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rhash = /#.*$/,
7528 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rts = /([?&])_=[^&]*/,
7529 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
7530 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #7653, #8125, #8152: local protocol detection
7531 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
7532 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rnoContent = /^(?:GET|HEAD)$/,
7533 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rprotocol = /^\/\//,
7534 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
7535  
7536 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* Prefilters
7537 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
7538 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 2) These are called:
7539 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - BEFORE asking for a transport
7540 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - AFTER param serialization (s.data is a string if s.processData is true)
7541 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 3) key is the dataType
7542 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 4) the catchall symbol "*" can be used
7543 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 5) execution will start with transport dataType and THEN continue down to "*" if needed
7544 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
7545 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { prefilters = {},
7546  
7547 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { /* Transports bindings
7548 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 1) key is the dataType
7549 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 2) the catchall symbol "*" can be used
7550 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * 3) selection will start with transport dataType and THEN go to "*" if needed
7551 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
7552 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { transports = {},
7553  
7554 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
7555 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { allTypes = "*/".concat("*");
7556  
7557 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// #8138, IE may throw an exception when accessing
7558 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// a field from window.location if document.domain has been set
7559 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {try {
7560 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxLocation = location.href;
7561 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {} catch( e ) {
7562 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use the href attribute of an A element
7563 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // since IE will modify it given document.location
7564 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxLocation = document.createElement( "a" );
7565 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxLocation.href = "";
7566 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxLocation = ajaxLocation.href;
7567 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7568  
7569 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Segment location into parts
7570 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
7571  
7572 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
7573 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {function addToPrefiltersOrTransports( structure ) {
7574  
7575 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // dataTypeExpression is optional and defaults to "*"
7576 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return function( dataTypeExpression, func ) {
7577  
7578 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof dataTypeExpression !== "string" ) {
7579 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { func = dataTypeExpression;
7580 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypeExpression = "*";
7581 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7582  
7583 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var dataType,
7584 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i = 0,
7585 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
7586  
7587 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( func ) ) {
7588 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For each dataType in the dataTypeExpression
7589 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( (dataType = dataTypes[i++]) ) {
7590 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Prepend if requested
7591 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( dataType[0] === "+" ) {
7592 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType = dataType.slice( 1 ) || "*";
7593 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { (structure[ dataType ] = structure[ dataType ] || []).unshift( func );
7594  
7595 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise append
7596 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7597 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { (structure[ dataType ] = structure[ dataType ] || []).push( func );
7598 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7599 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7600 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7601 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
7602 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7603  
7604 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Base inspection function for prefilters and transports
7605 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
7606  
7607 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var inspected = {},
7608 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { seekingTransport = ( structure === transports );
7609  
7610 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { function inspect( dataType ) {
7611 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var selected;
7612 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { inspected[ dataType ] = true;
7613 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
7614 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
7615 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
7616 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.dataTypes.unshift( dataTypeOrTransport );
7617 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { inspect( dataTypeOrTransport );
7618 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return false;
7619 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( seekingTransport ) {
7620 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return !( selected = dataTypeOrTransport );
7621 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7622 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7623 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return selected;
7624 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7625  
7626 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
7627 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7628  
7629 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// A special extend for ajax options
7630 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// that takes "flat" options (not to be deep extended)
7631 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Fixes #9887
7632 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {function ajaxExtend( target, src ) {
7633 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var key, deep,
7634 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { flatOptions = jQuery.ajaxSettings.flatOptions || {};
7635  
7636 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( key in src ) {
7637 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( src[ key ] !== undefined ) {
7638 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
7639 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7640 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7641 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( deep ) {
7642 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.extend( true, target, deep );
7643 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7644  
7645 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return target;
7646 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7647  
7648 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {/* Handles responses to an ajax request:
7649 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - finds the right dataType (mediates between content-type and expected dataType)
7650 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * - returns the corresponding response
7651 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
7652 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {function ajaxHandleResponses( s, jqXHR, responses ) {
7653  
7654 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var ct, type, finalDataType, firstDataType,
7655 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents = s.contents,
7656 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes = s.dataTypes;
7657  
7658 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove auto dataType and get content-type in the process
7659 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( dataTypes[ 0 ] === "*" ) {
7660 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.shift();
7661 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ct === undefined ) {
7662 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
7663 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7664 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7665  
7666 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check if we're dealing with a known content-type
7667 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( ct ) {
7668 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( type in contents ) {
7669 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( contents[ type ] && contents[ type ].test( ct ) ) {
7670 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.unshift( type );
7671 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { break;
7672 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7673 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7674 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7675  
7676 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check to see if we have a response for the expected dataType
7677 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( dataTypes[ 0 ] in responses ) {
7678 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalDataType = dataTypes[ 0 ];
7679 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7680 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Try convertible dataTypes
7681 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( type in responses ) {
7682 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
7683 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalDataType = type;
7684 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { break;
7685 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7686 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !firstDataType ) {
7687 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { firstDataType = type;
7688 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7689 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7690 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Or just use first one
7691 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { finalDataType = finalDataType || firstDataType;
7692 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7693  
7694 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If we found a dataType
7695 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We add the dataType to the list if needed
7696 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // and return the corresponding response
7697 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( finalDataType ) {
7698 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( finalDataType !== dataTypes[ 0 ] ) {
7699 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.unshift( finalDataType );
7700 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7701 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return responses[ finalDataType ];
7702 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7703 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7704  
7705 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {/* Chain conversions given the request and the original response
7706 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * Also sets the responseXXX fields on the jqXHR instance
7707 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
7708 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {function ajaxConvert( s, response, jqXHR, isSuccess ) {
7709 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var conv2, current, conv, tmp, prev,
7710 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters = {},
7711 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Work with a copy of dataTypes in case we need to modify it for conversion
7712 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes = s.dataTypes.slice();
7713  
7714 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Create converters map with lowercased keys
7715 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( dataTypes[ 1 ] ) {
7716 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( conv in s.converters ) {
7717 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters[ conv.toLowerCase() ] = s.converters[ conv ];
7718 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7719 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7720  
7721 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = dataTypes.shift();
7722  
7723 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert to each sequential dataType
7724 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( current ) {
7725  
7726 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.responseFields[ current ] ) {
7727 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR[ s.responseFields[ current ] ] = response;
7728 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7729  
7730 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply the dataFilter if provided
7731 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !prev && isSuccess && s.dataFilter ) {
7732 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = s.dataFilter( response, s.dataType );
7733 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7734  
7735 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { prev = current;
7736 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = dataTypes.shift();
7737  
7738 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( current ) {
7739  
7740 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // There's only work to do if current dataType is non-auto
7741 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( current === "*" ) {
7742  
7743 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = prev;
7744  
7745 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert response if prev dataType is non-auto and differs from current
7746 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( prev !== "*" && prev !== current ) {
7747  
7748 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Seek a direct converter
7749 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { conv = converters[ prev + " " + current ] || converters[ "* " + current ];
7750  
7751 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If none found, seek a pair
7752 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !conv ) {
7753 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( conv2 in converters ) {
7754  
7755 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If conv2 outputs current
7756 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { tmp = conv2.split( " " );
7757 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( tmp[ 1 ] === current ) {
7758  
7759 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If prev can be converted to accepted input
7760 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { conv = converters[ prev + " " + tmp[ 0 ] ] ||
7761 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters[ "* " + tmp[ 0 ] ];
7762 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv ) {
7763 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Condense equivalence converters
7764 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv === true ) {
7765 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { conv = converters[ conv2 ];
7766  
7767 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise, insert the intermediate dataType
7768 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( converters[ conv2 ] !== true ) {
7769 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { current = tmp[ 0 ];
7770 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataTypes.unshift( tmp[ 1 ] );
7771 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7772 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { break;
7773 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7774 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7775 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7776 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7777  
7778 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply converter (if not an equivalence)
7779 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv !== true ) {
7780  
7781 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Unless errors are allowed to bubble, catch and return them
7782 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( conv && s[ "throws" ] ) {
7783 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = conv( response );
7784 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7785 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
7786 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = conv( response );
7787 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
7788 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
7789 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7790 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7791 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7792 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7793 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7794 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7795  
7796 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return { state: "success", data: response };
7797 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7798  
7799 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.extend({
7800  
7801 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Counter for holding the number of active queries
7802 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { active: 0,
7803  
7804 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Last-Modified header cache for next request
7805 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { lastModified: {},
7806 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { etag: {},
7807  
7808 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxSettings: {
7809 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: ajaxLocation,
7810 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: "GET",
7811 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
7812 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { global: true,
7813 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { processData: true,
7814 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { async: true,
7815 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { contentType: "application/x-www-form-urlencoded; charset=UTF-8",
7816 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { /*
7817 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { timeout: 0,
7818 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { data: null,
7819 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: null,
7820 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { username: null,
7821 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { password: null,
7822 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cache: null,
7823 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { throws: false,
7824 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { traditional: false,
7825 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { headers: {},
7826 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
7827  
7828 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { accepts: {
7829 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "*": allTypes,
7830 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { text: "text/plain",
7831 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { html: "text/html",
7832 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml: "application/xml, text/xml",
7833 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { json: "application/json, text/javascript"
7834 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7835  
7836 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents: {
7837 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml: /xml/,
7838 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { html: /html/,
7839 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { json: /json/
7840 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7841  
7842 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseFields: {
7843 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xml: "responseXML",
7844 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { text: "responseText",
7845 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { json: "responseJSON"
7846 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7847  
7848 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Data converters
7849 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Keys separate source (or catchall "*") and destination types with a single space
7850 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters: {
7851  
7852 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert anything to text
7853 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "* text": String,
7854  
7855 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Text to html (true = no transformation)
7856 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text html": true,
7857  
7858 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Evaluate text as a json expression
7859 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text json": jQuery.parseJSON,
7860  
7861 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Parse text as xml
7862 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text xml": jQuery.parseXML
7863 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7864  
7865 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For options that shouldn't be deep extended:
7866 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // you can add your own custom options here if
7867 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // and when you create one that shouldn't be
7868 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // deep extended (see ajaxExtend)
7869 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { flatOptions: {
7870 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: true,
7871 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { context: true
7872 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7873 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7874  
7875 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Creates a full fledged settings object into target
7876 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // with both ajaxSettings and settings fields.
7877 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If target is omitted, writes into ajaxSettings.
7878 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxSetup: function( target, settings ) {
7879 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return settings ?
7880  
7881 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Building a settings object
7882 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
7883  
7884 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Extending ajaxSettings
7885 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxExtend( jQuery.ajaxSettings, target );
7886 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7887  
7888 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
7889 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajaxTransport: addToPrefiltersOrTransports( transports ),
7890  
7891 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Main method
7892 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ajax: function( url, options ) {
7893  
7894 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If url is an object, simulate pre-1.5 signature
7895 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof url === "object" ) {
7896 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = url;
7897 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { url = undefined;
7898 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7899  
7900 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Force options to be an object
7901 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = options || {};
7902  
7903 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var transport,
7904 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // URL without anti-cache param
7905 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL,
7906 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Response headers
7907 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeadersString,
7908 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeaders,
7909 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // timeout handle
7910 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { timeoutTimer,
7911 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Cross-domain detection vars
7912 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parts,
7913 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // To know if global events are to be dispatched
7914 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { fireGlobals,
7915 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Loop variable
7916 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { i,
7917 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Create the final options object
7918 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s = jQuery.ajaxSetup( {}, options ),
7919 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Callbacks context
7920 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callbackContext = s.context || s,
7921 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Context for global events is callbackContext if it is a DOM node or jQuery collection
7922 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
7923 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( callbackContext ) :
7924 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event,
7925 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Deferreds
7926 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred = jQuery.Deferred(),
7927 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { completeDeferred = jQuery.Callbacks("once memory"),
7928 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Status-dependent callbacks
7929 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode = s.statusCode || {},
7930 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Headers (they are sent all at once)
7931 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { requestHeaders = {},
7932 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { requestHeadersNames = {},
7933 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // The jqXHR state
7934 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { state = 0,
7935 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Default abort message
7936 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { strAbort = "canceled",
7937 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fake xhr
7938 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR = {
7939 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { readyState: 0,
7940  
7941 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Builds headers hashtable if needed
7942 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { getResponseHeader: function( key ) {
7943 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var match;
7944 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( state === 2 ) {
7945 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !responseHeaders ) {
7946 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeaders = {};
7947 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( (match = rheaders.exec( responseHeadersString )) ) {
7948 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
7949 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7950 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7951 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { match = responseHeaders[ key.toLowerCase() ];
7952 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7953 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return match == null ? null : match;
7954 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7955  
7956 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Raw string
7957 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { getAllResponseHeaders: function() {
7958 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return state === 2 ? responseHeadersString : null;
7959 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7960  
7961 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Caches the header
7962 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { setRequestHeader: function( name, value ) {
7963 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var lname = name.toLowerCase();
7964 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !state ) {
7965 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
7966 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { requestHeaders[ name ] = value;
7967 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7968 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
7969 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7970  
7971 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Overrides response content-type header
7972 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { overrideMimeType: function( type ) {
7973 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !state ) {
7974 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.mimeType = type;
7975 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7976 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
7977 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7978  
7979 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Status-dependent callbacks
7980 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode: function( map ) {
7981 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var code;
7982 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( map ) {
7983 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( state < 2 ) {
7984 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( code in map ) {
7985 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Lazy-add the new callback in a way that preserves old ones
7986 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
7987 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7988 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
7989 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Execute the appropriate callbacks
7990 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.always( map[ jqXHR.status ] );
7991 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7992 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7993 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
7994 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7995  
7996 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Cancel the request
7997 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { abort: function( statusText ) {
7998 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var finalText = statusText || strAbort;
7999 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( transport ) {
8000 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport.abort( finalText );
8001 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8002 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { done( 0, finalText );
8003 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
8004 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8005 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8006  
8007 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Attach deferreds
8008 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred.promise( jqXHR ).complete = completeDeferred.add;
8009 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.success = jqXHR.done;
8010 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.error = jqXHR.fail;
8011  
8012 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Remove hash character (#7531: and string promotion)
8013 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Add protocol if not provided (prefilters might expect it)
8014 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle falsy url in the settings object (#10093: consistency with old signature)
8015 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We also use the url parameter if available
8016 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" )
8017 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { .replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
8018  
8019 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Alias method option to type as per ticket #12004
8020 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.type = options.method || options.type || s.method || s.type;
8021  
8022 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Extract dataTypes list
8023 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
8024  
8025 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // A cross-domain request is in order when we have a protocol:host:port mismatch
8026 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.crossDomain == null ) {
8027 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parts = rurl.exec( s.url.toLowerCase() );
8028 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.crossDomain = !!( parts &&
8029 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
8030 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
8031 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
8032 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8033 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8034  
8035 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert data if not already a string
8036 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.data && s.processData && typeof s.data !== "string" ) {
8037 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.data = jQuery.param( s.data, s.traditional );
8038 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8039  
8040 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply prefilters
8041 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
8042  
8043 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If request was aborted inside a prefilter, stop there
8044 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( state === 2 ) {
8045 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jqXHR;
8046 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8047  
8048 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We can fire global events as of now if asked to
8049 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { fireGlobals = s.global;
8050  
8051 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Watch for a new set of requests
8052 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals && jQuery.active++ === 0 ) {
8053 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.trigger("ajaxStart");
8054 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8055  
8056 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Uppercase the type
8057 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.type = s.type.toUpperCase();
8058  
8059 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Determine if request has content
8060 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.hasContent = !rnoContent.test( s.type );
8061  
8062 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Save the URL in case we're toying with the If-Modified-Since
8063 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // and/or If-None-Match header later on
8064 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL = s.url;
8065  
8066 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // More options handling for requests with no content
8067 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !s.hasContent ) {
8068  
8069 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If data is available, append data to url
8070 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.data ) {
8071 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
8072 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #9682: remove data so that it's not used in an eventual retry
8073 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { delete s.data;
8074 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8075  
8076 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Add anti-cache in url if needed
8077 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.cache === false ) {
8078 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.url = rts.test( cacheURL ) ?
8079  
8080 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If there is already a '_' parameter, set its value
8081 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL.replace( rts, "$1_=" + nonce++ ) :
8082  
8083 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise add one to the end
8084 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
8085 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8086 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8087  
8088 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
8089 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.ifModified ) {
8090 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.lastModified[ cacheURL ] ) {
8091 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
8092 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8093 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.etag[ cacheURL ] ) {
8094 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
8095 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8096 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8097  
8098 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the correct header, if data is being sent
8099 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
8100 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( "Content-Type", s.contentType );
8101 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8102  
8103 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the Accepts header for the server, depending on the dataType
8104 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader(
8105 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "Accept",
8106 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
8107 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
8108 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.accepts[ "*" ]
8109 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8110  
8111 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Check for headers option
8112 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( i in s.headers ) {
8113 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.setRequestHeader( i, s.headers[ i ] );
8114 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8115  
8116 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Allow custom headers/mimetypes and early abort
8117 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
8118 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Abort if not done already and return
8119 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jqXHR.abort();
8120 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8121  
8122 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // aborting is no longer a cancellation
8123 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { strAbort = "abort";
8124  
8125 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Install callbacks on deferreds
8126 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( i in { success: 1, error: 1, complete: 1 } ) {
8127 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR[ i ]( s[ i ] );
8128 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8129  
8130 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get transport
8131 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
8132  
8133 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If no transport, we auto-abort
8134 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !transport ) {
8135 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { done( -1, "No Transport" );
8136 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8137 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.readyState = 1;
8138  
8139 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Send global event
8140 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals ) {
8141 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
8142 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8143 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Timeout
8144 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.async && s.timeout > 0 ) {
8145 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { timeoutTimer = setTimeout(function() {
8146 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.abort("timeout");
8147 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }, s.timeout );
8148 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8149  
8150 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
8151 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { state = 1;
8152 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport.send( requestHeaders, done );
8153 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
8154 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Propagate exception as error if not done
8155 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( state < 2 ) {
8156 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { done( -1, e );
8157 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Simply rethrow otherwise
8158 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8159 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { throw e;
8160 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8161 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8162 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8163  
8164 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Callback for when everything is done
8165 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { function done( status, nativeStatusText, responses, headers ) {
8166 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var isSuccess, success, error, response, modified,
8167 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = nativeStatusText;
8168  
8169 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Called once
8170 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( state === 2 ) {
8171 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
8172 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8173  
8174 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // State is "done" now
8175 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { state = 2;
8176  
8177 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Clear timeout if it exists
8178 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( timeoutTimer ) {
8179 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { clearTimeout( timeoutTimer );
8180 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8181  
8182 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Dereference transport for early garbage collection
8183 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // (no matter how long the jqXHR object will be used)
8184 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { transport = undefined;
8185  
8186 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Cache response headers
8187 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseHeadersString = headers || "";
8188  
8189 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set readyState
8190 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.readyState = status > 0 ? 4 : 0;
8191  
8192 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Determine if successful
8193 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { isSuccess = status >= 200 && status < 300 || status === 304;
8194  
8195 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get response data
8196 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( responses ) {
8197 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = ajaxHandleResponses( s, jqXHR, responses );
8198 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8199  
8200 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Convert no matter what (that way responseXXX fields are always set)
8201 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = ajaxConvert( s, response, jqXHR, isSuccess );
8202  
8203 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If successful, handle type chaining
8204 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( isSuccess ) {
8205  
8206 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
8207 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.ifModified ) {
8208 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { modified = jqXHR.getResponseHeader("Last-Modified");
8209 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( modified ) {
8210 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.lastModified[ cacheURL ] = modified;
8211 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8212 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { modified = jqXHR.getResponseHeader("etag");
8213 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( modified ) {
8214 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.etag[ cacheURL ] = modified;
8215 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8216 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8217  
8218 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // if no content
8219 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( status === 204 || s.type === "HEAD" ) {
8220 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = "nocontent";
8221  
8222 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // if not modified
8223 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( status === 304 ) {
8224 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = "notmodified";
8225  
8226 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If we have data, let's convert it
8227 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8228 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = response.state;
8229 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { success = response.data;
8230 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { error = response.error;
8231 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { isSuccess = !error;
8232 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8233 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8234 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We extract error from statusText
8235 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // then normalize statusText and status for non-aborts
8236 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { error = statusText;
8237 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( status || !statusText ) {
8238 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusText = "error";
8239 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( status < 0 ) {
8240 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { status = 0;
8241 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8242 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8243 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8244  
8245 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set data for the fake xhr object
8246 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.status = status;
8247 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.statusText = ( nativeStatusText || statusText ) + "";
8248  
8249 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Success/Error
8250 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( isSuccess ) {
8251 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
8252 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8253 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
8254 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8255  
8256 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Status-dependent callbacks
8257 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.statusCode( statusCode );
8258 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { statusCode = undefined;
8259  
8260 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals ) {
8261 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
8262 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { [ jqXHR, s, isSuccess ? success : error ] );
8263 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8264  
8265 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Complete
8266 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
8267  
8268 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( fireGlobals ) {
8269 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
8270 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle the global AJAX counter
8271 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !( --jQuery.active ) ) {
8272 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.event.trigger("ajaxStop");
8273 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8274 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8275 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8276  
8277 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jqXHR;
8278 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8279  
8280 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { getJSON: function( url, data, callback ) {
8281 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.get( url, data, callback, "json" );
8282 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8283  
8284 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { getScript: function( url, callback ) {
8285 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.get( url, undefined, callback, "script" );
8286 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8287 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8288  
8289 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [ "get", "post" ], function( i, method ) {
8290 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery[ method ] = function( url, data, callback, type ) {
8291 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // shift arguments if data argument was omitted
8292 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( data ) ) {
8293 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = type || callback;
8294 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = data;
8295 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { data = undefined;
8296 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8297  
8298 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.ajax({
8299 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: url,
8300 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: method,
8301 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: type,
8302 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { data: data,
8303 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { success: callback
8304 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8305 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8306 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8307  
8308 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Attach a bunch of functions for handling common AJAX events
8309 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
8310 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ type ] = function( fn ) {
8311 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.on( type, fn );
8312 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8313 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8314  
8315  
8316 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery._evalUrl = function( url ) {
8317 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.ajax({
8318 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: url,
8319 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: "GET",
8320 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: "script",
8321 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { async: false,
8322 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { global: false,
8323 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "throws": true
8324 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8325 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8326  
8327  
8328 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
8329 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrapAll: function( html ) {
8330 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var wrap;
8331  
8332 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( html ) ) {
8333 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function( i ) {
8334 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).wrapAll( html.call(this, i) );
8335 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8336 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8337  
8338 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this[ 0 ] ) {
8339  
8340 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // The elements to wrap the target around
8341 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
8342  
8343 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( this[ 0 ].parentNode ) {
8344 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap.insertBefore( this[ 0 ] );
8345 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8346  
8347 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap.map(function() {
8348 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var elem = this;
8349  
8350 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( elem.firstElementChild ) {
8351 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = elem.firstElementChild;
8352 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8353  
8354 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem;
8355 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }).append( this );
8356 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8357  
8358 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
8359 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8360  
8361 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrapInner: function( html ) {
8362 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( html ) ) {
8363 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function( i ) {
8364 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).wrapInner( html.call(this, i) );
8365 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8366 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8367  
8368 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function() {
8369 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var self = jQuery( this ),
8370 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents = self.contents();
8371  
8372 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( contents.length ) {
8373 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents.wrapAll( html );
8374  
8375 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8376 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.append( html );
8377 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8378 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8379 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8380  
8381 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { wrap: function( html ) {
8382 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var isFunction = jQuery.isFunction( html );
8383  
8384 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.each(function( i ) {
8385 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
8386 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8387 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8388  
8389 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { unwrap: function() {
8390 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.parent().each(function() {
8391 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !jQuery.nodeName( this, "body" ) ) {
8392 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( this ).replaceWith( this.childNodes );
8393 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8394 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }).end();
8395 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8396 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8397  
8398  
8399 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.expr.filters.hidden = function( elem ) {
8400 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: Opera <= 12.12
8401 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Opera reports offsetWidths and offsetHeights less than zero on some elements
8402 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
8403 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8404 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.expr.filters.visible = function( elem ) {
8405 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return !jQuery.expr.filters.hidden( elem );
8406 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8407  
8408  
8409  
8410  
8411 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var r20 = /%20/g,
8412 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rbracket = /\[\]$/,
8413 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rCRLF = /\r?\n/g,
8414 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
8415 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rsubmittable = /^(?:input|select|textarea|keygen)/i;
8416  
8417 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {function buildParams( prefix, obj, traditional, add ) {
8418 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var name;
8419  
8420 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isArray( obj ) ) {
8421 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize array item.
8422 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( obj, function( i, v ) {
8423 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( traditional || rbracket.test( prefix ) ) {
8424 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Treat each array item as a scalar.
8425 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { add( prefix, v );
8426  
8427 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8428 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Item is non-scalar (array or object), encode its numeric index.
8429 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
8430 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8431 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8432  
8433 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( !traditional && jQuery.type( obj ) === "object" ) {
8434 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize object item.
8435 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( name in obj ) {
8436 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
8437 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8438  
8439 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8440 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize scalar item.
8441 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { add( prefix, obj );
8442 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8443 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8444  
8445 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Serialize an array of form elements or a set of
8446 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// key/values into a query string
8447 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.param = function( a, traditional ) {
8448 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var prefix,
8449 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s = [],
8450 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { add = function( key, value ) {
8451 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If value is a function, invoke it and return its value
8452 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
8453 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
8454 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8455  
8456 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set traditional to true for jQuery <= 1.3.2 behavior.
8457 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( traditional === undefined ) {
8458 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
8459 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8460  
8461 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If an array was passed in, assume that it is an array of form elements.
8462 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
8463 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Serialize the form elements
8464 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( a, function() {
8465 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { add( this.name, this.value );
8466 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8467  
8468 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8469 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If traditional, encode the "old" way (the way 1.3.2 or older
8470 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // did it), otherwise encode params recursively.
8471 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( prefix in a ) {
8472 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { buildParams( prefix, a[ prefix ], traditional, add );
8473 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8474 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8475  
8476 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Return the resulting serialization
8477 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return s.join( "&" ).replace( r20, "+" );
8478 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8479  
8480 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
8481 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { serialize: function() {
8482 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.param( this.serializeArray() );
8483 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8484 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { serializeArray: function() {
8485 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.map(function() {
8486 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Can add propHook for "elements" to filter or add form elements
8487 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var elements = jQuery.prop( this, "elements" );
8488 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elements ? jQuery.makeArray( elements ) : this;
8489 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { })
8490 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { .filter(function() {
8491 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var type = this.type;
8492  
8493 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use .is( ":disabled" ) so that fieldset[disabled] works
8494 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.name && !jQuery( this ).is( ":disabled" ) &&
8495 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
8496 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( this.checked || !rcheckableType.test( type ) );
8497 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { })
8498 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { .map(function( i, elem ) {
8499 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var val = jQuery( this ).val();
8500  
8501 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return val == null ?
8502 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { null :
8503 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.isArray( val ) ?
8504 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.map( val, function( val ) {
8505 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
8506 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }) :
8507 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
8508 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }).get();
8509 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8510 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8511  
8512  
8513 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxSettings.xhr = function() {
8514 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
8515 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return new XMLHttpRequest();
8516 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch( e ) {}
8517 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8518  
8519 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var xhrId = 0,
8520 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhrCallbacks = {},
8521 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhrSuccessStatus = {
8522 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // file protocol always yields status code 0, assume 200
8523 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { 0: 200,
8524 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE9
8525 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #1450: sometimes IE returns 1223 when it should be 204
8526 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { 1223: 204
8527 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8528 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhrSupported = jQuery.ajaxSettings.xhr();
8529  
8530 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Support: IE9
8531 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Open requests must be manually aborted on unload (#5280)
8532 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( window.ActiveXObject ) {
8533 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( window ).on( "unload", function() {
8534 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( var key in xhrCallbacks ) {
8535 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhrCallbacks[ key ]();
8536 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8537 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8538 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8539  
8540 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
8541 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {support.ajax = xhrSupported = !!xhrSupported;
8542  
8543 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxTransport(function( options ) {
8544 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var callback;
8545  
8546 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Cross domain only allowed if supported through XMLHttpRequest
8547 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( support.cors || xhrSupported && !options.crossDomain ) {
8548 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
8549 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { send: function( headers, complete ) {
8550 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var i,
8551 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr = options.xhr(),
8552 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { id = ++xhrId;
8553  
8554 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.open( options.type, options.url, options.async, options.username, options.password );
8555  
8556 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Apply custom fields if provided
8557 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.xhrFields ) {
8558 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( i in options.xhrFields ) {
8559 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr[ i ] = options.xhrFields[ i ];
8560 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8561 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8562  
8563 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Override mime type if needed
8564 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.mimeType && xhr.overrideMimeType ) {
8565 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.overrideMimeType( options.mimeType );
8566 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8567  
8568 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // X-Requested-With header
8569 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For cross-domain requests, seeing as conditions for a preflight are
8570 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // akin to a jigsaw puzzle, we simply never set it to be sure.
8571 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // (it can always be set on a per-request basis or even using ajaxSetup)
8572 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // For same-domain requests, won't change header if already provided.
8573 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !options.crossDomain && !headers["X-Requested-With"] ) {
8574 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { headers["X-Requested-With"] = "XMLHttpRequest";
8575 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8576  
8577 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set headers
8578 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { for ( i in headers ) {
8579 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.setRequestHeader( i, headers[ i ] );
8580 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8581  
8582 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Callback
8583 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = function( type ) {
8584 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return function() {
8585 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
8586 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { delete xhrCallbacks[ id ];
8587 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = xhr.onload = xhr.onerror = null;
8588  
8589 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( type === "abort" ) {
8590 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.abort();
8591 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( type === "error" ) {
8592 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { complete(
8593 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // file: protocol always yields status 0; see #8605, #14207
8594 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.status,
8595 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.statusText
8596 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8597 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8598 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { complete(
8599 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhrSuccessStatus[ xhr.status ] || xhr.status,
8600 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.statusText,
8601 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Support: IE9
8602 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Accessing binary-data responseText throws an exception
8603 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // (#11426)
8604 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { typeof xhr.responseText === "string" ? {
8605 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { text: xhr.responseText
8606 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } : undefined,
8607 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.getAllResponseHeaders()
8608 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8609 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8610 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8611 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8612 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8613  
8614 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Listen to events
8615 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.onload = callback();
8616 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.onerror = callback("error");
8617  
8618 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Create the abort callback
8619 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = xhrCallbacks[ id ] = callback("abort");
8620  
8621 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { try {
8622 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Do send the request (this may raise an exception)
8623 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { xhr.send( options.hasContent && options.data || null );
8624 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } catch ( e ) {
8625 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // #14683: Only rethrow if this hasn't been notified as an error yet
8626 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
8627 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { throw e;
8628 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8629 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8630 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8631  
8632 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { abort: function() {
8633 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
8634 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback();
8635 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8636 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8637 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8638 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8639 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8640  
8641  
8642  
8643  
8644 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Install script dataType
8645 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxSetup({
8646 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { accepts: {
8647 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
8648 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8649 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { contents: {
8650 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { script: /(?:java|ecma)script/
8651 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8652 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { converters: {
8653 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "text script": function( text ) {
8654 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.globalEval( text );
8655 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return text;
8656 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8657 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8658 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8659  
8660 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Handle cache's special case and crossDomain
8661 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxPrefilter( "script", function( s ) {
8662 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.cache === undefined ) {
8663 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.cache = false;
8664 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8665 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.crossDomain ) {
8666 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.type = "GET";
8667 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8668 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8669  
8670 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Bind script tag hack transport
8671 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxTransport( "script", function( s ) {
8672 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // This transport only deals with cross domain requests
8673 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s.crossDomain ) {
8674 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var script, callback;
8675 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
8676 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { send: function( _, complete ) {
8677 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { script = jQuery("<script>").prop({
8678 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { async: true,
8679 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { charset: s.scriptCharset,
8680 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { src: s.url
8681 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }).on(
8682 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "load error",
8683 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = function( evt ) {
8684 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { script.remove();
8685 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = null;
8686 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( evt ) {
8687 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { complete( evt.type === "error" ? 404 : 200, evt.type );
8688 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8689 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8690 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8691 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { document.head.appendChild( script[ 0 ] );
8692 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8693 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { abort: function() {
8694 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( callback ) {
8695 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback();
8696 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8697 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8698 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8699 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8700 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8701  
8702  
8703  
8704  
8705 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var oldCallbacks = [],
8706 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { rjsonp = /(=)\?(?=&|$)|\?\?/;
8707  
8708 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Default jsonp settings
8709 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxSetup({
8710 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jsonp: "callback",
8711 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jsonpCallback: function() {
8712 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
8713 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { this[ callback ] = true;
8714 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return callback;
8715 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8716 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8717  
8718 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Detect, normalize options and install callbacks for jsonp requests
8719 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
8720  
8721 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var callbackName, overwritten, responseContainer,
8722 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
8723 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { "url" :
8724 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
8725 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
8726  
8727 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Handle iff the expected data type is "jsonp" or we have a parameter to set
8728 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
8729  
8730 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get callback name, remembering preexisting value associated with it
8731 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
8732 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.jsonpCallback() :
8733 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.jsonpCallback;
8734  
8735 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Insert callback into url or form data
8736 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jsonProp ) {
8737 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
8738 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( s.jsonp !== false ) {
8739 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
8740 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8741  
8742 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Use data converter to retrieve json after script execution
8743 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.converters["script json"] = function() {
8744 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !responseContainer ) {
8745 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.error( callbackName + " was not called" );
8746 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8747 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return responseContainer[ 0 ];
8748 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8749  
8750 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // force json dataType
8751 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.dataTypes[ 0 ] = "json";
8752  
8753 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Install callback
8754 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { overwritten = window[ callbackName ];
8755 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { window[ callbackName ] = function() {
8756 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseContainer = arguments;
8757 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8758  
8759 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Clean-up function (fires after converters)
8760 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jqXHR.always(function() {
8761 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Restore preexisting value
8762 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { window[ callbackName ] = overwritten;
8763  
8764 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Save back as free
8765 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( s[ callbackName ] ) {
8766 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // make sure that re-using the options doesn't screw things around
8767 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { s.jsonpCallback = originalSettings.jsonpCallback;
8768  
8769 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // save the callback name for future use
8770 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { oldCallbacks.push( callbackName );
8771 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8772  
8773 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Call if it was a function and we have a response
8774 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( responseContainer && jQuery.isFunction( overwritten ) ) {
8775 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { overwritten( responseContainer[ 0 ] );
8776 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8777  
8778 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseContainer = overwritten = undefined;
8779 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8780  
8781 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Delegate to script
8782 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return "script";
8783 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8784 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8785  
8786  
8787  
8788  
8789 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// data: string of html
8790 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// context (optional): If specified, the fragment will be created in this context, defaults to document
8791 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// keepScripts (optional): If true, will include scripts passed in the html string
8792 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.parseHTML = function( data, context, keepScripts ) {
8793 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !data || typeof data !== "string" ) {
8794 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return null;
8795 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8796 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof context === "boolean" ) {
8797 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { keepScripts = context;
8798 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { context = false;
8799 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8800 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { context = context || document;
8801  
8802 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var parsed = rsingleTag.exec( data ),
8803 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { scripts = !keepScripts && [];
8804  
8805 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Single tag
8806 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( parsed ) {
8807 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return [ context.createElement( parsed[1] ) ];
8808 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8809  
8810 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parsed = jQuery.buildFragment( [ data ], context, scripts );
8811  
8812 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( scripts && scripts.length ) {
8813 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( scripts ).remove();
8814 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8815  
8816 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.merge( [], parsed.childNodes );
8817 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8818  
8819  
8820 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Keep a copy of the old load method
8821 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var _load = jQuery.fn.load;
8822  
8823 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {/**
8824 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * Load a url into a page
8825 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
8826 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.load = function( url, params, callback ) {
8827 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof url !== "string" && _load ) {
8828 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return _load.apply( this, arguments );
8829 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8830  
8831 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var selector, type, response,
8832 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { self = this,
8833 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { off = url.indexOf(" ");
8834  
8835 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( off >= 0 ) {
8836 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { selector = jQuery.trim( url.slice( off ) );
8837 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { url = url.slice( 0, off );
8838 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8839  
8840 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If it's a function
8841 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( params ) ) {
8842  
8843 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We assume that it's the callback
8844 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { callback = params;
8845 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { params = undefined;
8846  
8847 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise, build a param string
8848 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else if ( params && typeof params === "object" ) {
8849 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type = "POST";
8850 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8851  
8852 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If we have elements to modify, make the request
8853 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( self.length > 0 ) {
8854 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.ajax({
8855 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { url: url,
8856  
8857 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // if "type" variable is undefined, then "GET" method will be used
8858 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { type: type,
8859 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { dataType: "html",
8860 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { data: params
8861 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }).done(function( responseText ) {
8862  
8863 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Save response for use in complete callback
8864 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { response = arguments;
8865  
8866 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.html( selector ?
8867  
8868 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If a selector was specified, locate the right elements in a dummy div
8869 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Exclude scripts to avoid IE 'Permission Denied' errors
8870 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
8871  
8872 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Otherwise use the full result
8873 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { responseText );
8874  
8875 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }).complete( callback && function( jqXHR, status ) {
8876 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
8877 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8878 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8879  
8880 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this;
8881 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8882  
8883  
8884  
8885  
8886 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.expr.filters.animated = function( elem ) {
8887 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.grep(jQuery.timers, function( fn ) {
8888 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem === fn.elem;
8889 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }).length;
8890 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8891  
8892  
8893  
8894  
8895 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var docElem = window.document.documentElement;
8896  
8897 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {/**
8898 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { * Gets a window from an element
8899 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
8900 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {function getWindow( elem ) {
8901 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
8902 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
8903  
8904 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.offset = {
8905 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { setOffset: function( elem, options, i ) {
8906 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
8907 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { position = jQuery.css( elem, "position" ),
8908 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curElem = jQuery( elem ),
8909 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { props = {};
8910  
8911 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set position first, in-case top/left are set even on static elem
8912 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( position === "static" ) {
8913 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.style.position = "relative";
8914 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8915  
8916 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curOffset = curElem.offset();
8917 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curCSSTop = jQuery.css( elem, "top" );
8918 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curCSSLeft = jQuery.css( elem, "left" );
8919 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { calculatePosition = ( position === "absolute" || position === "fixed" ) &&
8920 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { ( curCSSTop + curCSSLeft ).indexOf("auto") > -1;
8921  
8922 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Need to be able to calculate position if either top or left is auto and position is either absolute or fixed
8923 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( calculatePosition ) {
8924 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curPosition = curElem.position();
8925 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curTop = curPosition.top;
8926 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curLeft = curPosition.left;
8927  
8928 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8929 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curTop = parseFloat( curCSSTop ) || 0;
8930 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curLeft = parseFloat( curCSSLeft ) || 0;
8931 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8932  
8933 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isFunction( options ) ) {
8934 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { options = options.call( elem, i, curOffset );
8935 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8936  
8937 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.top != null ) {
8938 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { props.top = ( options.top - curOffset.top ) + curTop;
8939 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8940 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( options.left != null ) {
8941 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { props.left = ( options.left - curOffset.left ) + curLeft;
8942 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8943  
8944 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( "using" in options ) {
8945 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { options.using.call( elem, props );
8946  
8947 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
8948 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { curElem.css( props );
8949 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8950 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8951 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8952  
8953 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.extend({
8954 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { offset: function( options ) {
8955 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( arguments.length ) {
8956 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return options === undefined ?
8957 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { this :
8958 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { this.each(function( i ) {
8959 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.offset.setOffset( this, options, i );
8960 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8961 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8962  
8963 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var docElem, win,
8964 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[ 0 ],
8965 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { box = { top: 0, left: 0 },
8966 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc = elem && elem.ownerDocument;
8967  
8968 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !doc ) {
8969 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
8970 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8971  
8972 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { docElem = doc.documentElement;
8973  
8974 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Make sure it's not a disconnected DOM node
8975 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !jQuery.contains( docElem, elem ) ) {
8976 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return box;
8977 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8978  
8979 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // If we don't have gBCR, just use 0,0 rather than error
8980 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // BlackBerry 5, iOS 3 (original iPhone)
8981 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( typeof elem.getBoundingClientRect !== strundefined ) {
8982 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { box = elem.getBoundingClientRect();
8983 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8984 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { win = getWindow( doc );
8985 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
8986 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { top: box.top + win.pageYOffset - docElem.clientTop,
8987 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { left: box.left + win.pageXOffset - docElem.clientLeft
8988 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
8989 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8990  
8991 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { position: function() {
8992 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !this[ 0 ] ) {
8993 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return;
8994 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8995  
8996 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var offsetParent, offset,
8997 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem = this[ 0 ],
8998 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parentOffset = { top: 0, left: 0 };
8999  
9000 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent
9001 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.css( elem, "position" ) === "fixed" ) {
9002 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // We assume that getBoundingClientRect is available when computed position is fixed
9003 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { offset = elem.getBoundingClientRect();
9004  
9005 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9006 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get *real* offsetParent
9007 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { offsetParent = this.offsetParent();
9008  
9009 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get correct offsets
9010 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { offset = this.offset();
9011 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
9012 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parentOffset = offsetParent.offset();
9013 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9014  
9015 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Add offsetParent borders
9016 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
9017 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
9018 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9019  
9020 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Subtract parent offsets and element margins
9021 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return {
9022 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
9023 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
9024 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9025 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
9026  
9027 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { offsetParent: function() {
9028 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.map(function() {
9029 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var offsetParent = this.offsetParent || docElem;
9030  
9031 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) {
9032 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { offsetParent = offsetParent.offsetParent;
9033 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9034  
9035 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return offsetParent || docElem;
9036 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
9037 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9038 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
9039  
9040 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Create scrollLeft and scrollTop methods
9041 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
9042 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var top = "pageYOffset" === prop;
9043  
9044 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ method ] = function( val ) {
9045 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, function( elem, method, val ) {
9046 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var win = getWindow( elem );
9047  
9048 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( val === undefined ) {
9049 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return win ? win[ prop ] : elem[ method ];
9050 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9051  
9052 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( win ) {
9053 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { win.scrollTo(
9054 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { !top ? val : window.pageXOffset,
9055 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { top ? val : window.pageYOffset
9056 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9057  
9058 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { } else {
9059 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem[ method ] = val;
9060 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9061 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }, method, val, arguments.length, null );
9062 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9063 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
9064  
9065 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Add the top/left cssHooks using jQuery.fn.position
9066 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
9067 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// getComputedStyle returns percent when specified for top/left/bottom/right
9068 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// rather than make the css module depend on the offset module, we just check for it here
9069 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( [ "top", "left" ], function( i, prop ) {
9070 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
9071 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { function( elem, computed ) {
9072 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( computed ) {
9073 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { computed = curCSS( elem, prop );
9074 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // if curCSS returns percentage, fallback to offset
9075 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return rnumnonpx.test( computed ) ?
9076 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery( elem ).position()[ prop ] + "px" :
9077 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { computed;
9078 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9079 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9080 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9081 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
9082  
9083  
9084 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
9085 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
9086 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
9087 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // margin is only for outerHeight, outerWidth
9088 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fn[ funcName ] = function( margin, value ) {
9089 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
9090 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
9091  
9092 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return access( this, function( elem, type, value ) {
9093 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { var doc;
9094  
9095 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( jQuery.isWindow( elem ) ) {
9096 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
9097 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // isn't a whole lot we can do. See pull request at this URL for discussion:
9098 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // https://github.com/jquery/jquery/pull/764
9099 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return elem.document.documentElement[ "client" + name ];
9100 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9101  
9102 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get document width or height
9103 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( elem.nodeType === 9 ) {
9104 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc = elem.documentElement;
9105  
9106 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
9107 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // whichever is greatest
9108 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return Math.max(
9109 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.body[ "scroll" + name ], doc[ "scroll" + name ],
9110 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { elem.body[ "offset" + name ], doc[ "offset" + name ],
9111 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { doc[ "client" + name ]
9112 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
9113 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9114  
9115 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return value === undefined ?
9116 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Get width or height on the element, requesting but not forcing parseFloat
9117 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.css( elem, type, extra ) :
9118  
9119 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Set width or height on the element
9120 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.style( elem, type, value, extra );
9121 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }, type, chainable ? margin : undefined, chainable, null );
9122 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
9123 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
9124 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
9125  
9126  
9127 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// The number of elements contained in the matched element set
9128 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.size = function() {
9129 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return this.length;
9130 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9131  
9132 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fn.andSelf = jQuery.fn.addBack;
9133  
9134  
9135  
9136  
9137 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Register as a named AMD module, since jQuery can be concatenated with other
9138 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// files that may use define, but not via a proper concatenation script that
9139 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// understands anonymous AMD modules. A named AMD is safest and most robust
9140 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// way to register. Lowercase jquery is used because AMD module names are
9141 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// derived from file names, and jQuery is normally delivered in a lowercase
9142 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// file name. Do this after creating the global so that if an AMD module wants
9143 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// to call noConflict to hide this version of jQuery, it will work.
9144  
9145 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Note that for maximum portability, libraries that are not jQuery should
9146 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// declare themselves as anonymous modules, and avoid setting a global if an
9147 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// AMD loader is present. jQuery is a special case. For more information, see
9148 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
9149  
9150 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( typeof define === "function" && define.amd ) {
9151 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { define( "jquery", [], function() {
9152 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery;
9153 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
9154 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
9155  
9156  
9157  
9158  
9159 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {var
9160 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Map over jQuery in case of overwrite
9161 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { _jQuery = window.jQuery,
9162  
9163 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // Map over the $ in case of overwrite
9164 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { _$ = window.$;
9165  
9166 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.noConflict = function( deep ) {
9167 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( window.$ === jQuery ) {
9168 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.$ = _$;
9169 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9170  
9171 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { if ( deep && window.jQuery === jQuery ) {
9172 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.jQuery = _jQuery;
9173 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9174  
9175 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { return jQuery;
9176 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9177  
9178 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// Expose jQuery and $ identifiers, even in
9179 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
9180 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {// and CommonJS for browser emulators (#13566)
9181 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {if ( typeof noGlobal === strundefined ) {
9182 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { window.jQuery = window.$ = jQuery;
9183 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
9184  
9185  
9186  
9187  
9188 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {return jQuery;
9189  
9190 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}));