corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 /*!
2 * jQuery JavaScript Library v2.1.0
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-01-23T21:10Z
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 trim = "".trim;
63  
64 var support = {};
65  
66  
67  
68 var
69 // Use the correct document accordingly with window argument (sandbox)
70 document = window.document,
71  
72 version = "2.1.0",
73  
74 // Define a local copy of jQuery
75 jQuery = function( selector, context ) {
76 // The jQuery object is actually just the init constructor 'enhanced'
77 // Need init if jQuery is called (just allow error to be thrown if not included)
78 return new jQuery.fn.init( selector, context );
79 },
80  
81 // Matches dashed string for camelizing
82 rmsPrefix = /^-ms-/,
83 rdashAlpha = /-([\da-z])/gi,
84  
85 // Used by jQuery.camelCase as callback to replace()
86 fcamelCase = function( all, letter ) {
87 return letter.toUpperCase();
88 };
89  
90 jQuery.fn = jQuery.prototype = {
91 // The current version of jQuery being used
92 jquery: version,
93  
94 constructor: jQuery,
95  
96 // Start with an empty selector
97 selector: "",
98  
99 // The default length of a jQuery object is 0
100 length: 0,
101  
102 toArray: function() {
103 return slice.call( this );
104 },
105  
106 // Get the Nth element in the matched element set OR
107 // Get the whole matched element set as a clean array
108 get: function( num ) {
109 return num != null ?
110  
111 // Return a 'clean' array
112 ( num < 0 ? this[ num + this.length ] : this[ num ] ) :
113  
114 // Return just the object
115 slice.call( this );
116 },
117  
118 // Take an array of elements and push it onto the stack
119 // (returning the new matched element set)
120 pushStack: function( elems ) {
121  
122 // Build a new jQuery matched element set
123 var ret = jQuery.merge( this.constructor(), elems );
124  
125 // Add the old object onto the stack (as a reference)
126 ret.prevObject = this;
127 ret.context = this.context;
128  
129 // Return the newly-formed element set
130 return ret;
131 },
132  
133 // Execute a callback for every element in the matched set.
134 // (You can seed the arguments with an array of args, but this is
135 // only used internally.)
136 each: function( callback, args ) {
137 return jQuery.each( this, callback, args );
138 },
139  
140 map: function( callback ) {
141 return this.pushStack( jQuery.map(this, function( elem, i ) {
142 return callback.call( elem, i, elem );
143 }));
144 },
145  
146 slice: function() {
147 return this.pushStack( slice.apply( this, arguments ) );
148 },
149  
150 first: function() {
151 return this.eq( 0 );
152 },
153  
154 last: function() {
155 return this.eq( -1 );
156 },
157  
158 eq: function( i ) {
159 var len = this.length,
160 j = +i + ( i < 0 ? len : 0 );
161 return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
162 },
163  
164 end: function() {
165 return this.prevObject || this.constructor(null);
166 },
167  
168 // For internal use only.
169 // Behaves like an Array's method, not like a jQuery method.
170 push: push,
171 sort: arr.sort,
172 splice: arr.splice
173 };
174  
175 jQuery.extend = jQuery.fn.extend = function() {
176 var options, name, src, copy, copyIsArray, clone,
177 target = arguments[0] || {},
178 i = 1,
179 length = arguments.length,
180 deep = false;
181  
182 // Handle a deep copy situation
183 if ( typeof target === "boolean" ) {
184 deep = target;
185  
186 // skip the boolean and the target
187 target = arguments[ i ] || {};
188 i++;
189 }
190  
191 // Handle case when target is a string or something (possible in deep copy)
192 if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
193 target = {};
194 }
195  
196 // extend jQuery itself if only one argument is passed
197 if ( i === length ) {
198 target = this;
199 i--;
200 }
201  
202 for ( ; i < length; i++ ) {
203 // Only deal with non-null/undefined values
204 if ( (options = arguments[ i ]) != null ) {
205 // Extend the base object
206 for ( name in options ) {
207 src = target[ name ];
208 copy = options[ name ];
209  
210 // Prevent never-ending loop
211 if ( target === copy ) {
212 continue;
213 }
214  
215 // Recurse if we're merging plain objects or arrays
216 if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
217 if ( copyIsArray ) {
218 copyIsArray = false;
219 clone = src && jQuery.isArray(src) ? src : [];
220  
221 } else {
222 clone = src && jQuery.isPlainObject(src) ? src : {};
223 }
224  
225 // Never move original objects, clone them
226 target[ name ] = jQuery.extend( deep, clone, copy );
227  
228 // Don't bring in undefined values
229 } else if ( copy !== undefined ) {
230 target[ name ] = copy;
231 }
232 }
233 }
234 }
235  
236 // Return the modified object
237 return target;
238 };
239  
240 jQuery.extend({
241 // Unique for each copy of jQuery on the page
242 expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
243  
244 // Assume jQuery is ready without the ready module
245 isReady: true,
246  
247 error: function( msg ) {
248 throw new Error( msg );
249 },
250  
251 noop: function() {},
252  
253 // See test/unit/core.js for details concerning isFunction.
254 // Since version 1.3, DOM methods and functions like alert
255 // aren't supported. They return false on IE (#2968).
256 isFunction: function( obj ) {
257 return jQuery.type(obj) === "function";
258 },
259  
260 isArray: Array.isArray,
261  
262 isWindow: function( obj ) {
263 return obj != null && obj === obj.window;
264 },
265  
266 isNumeric: function( obj ) {
267 // parseFloat NaNs numeric-cast false positives (null|true|false|"")
268 // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
269 // subtraction forces infinities to NaN
270 return obj - parseFloat( obj ) >= 0;
271 },
272  
273 isPlainObject: function( obj ) {
274 // Not plain objects:
275 // - Any object or value whose internal [[Class]] property is not "[object Object]"
276 // - DOM nodes
277 // - window
278 if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
279 return false;
280 }
281  
282 // Support: Firefox <20
283 // The try/catch suppresses exceptions thrown when attempting to access
284 // the "constructor" property of certain host objects, ie. |window.location|
285 // https://bugzilla.mozilla.org/show_bug.cgi?id=814622
286 try {
287 if ( obj.constructor &&
288 !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
289 return false;
290 }
291 } catch ( e ) {
292 return false;
293 }
294  
295 // If the function hasn't returned already, we're confident that
296 // |obj| is a plain object, created by {} or constructed with new Object
297 return true;
298 },
299  
300 isEmptyObject: function( obj ) {
301 var name;
302 for ( name in obj ) {
303 return false;
304 }
305 return true;
306 },
307  
308 type: function( obj ) {
309 if ( obj == null ) {
310 return obj + "";
311 }
312 // Support: Android < 4.0, iOS < 6 (functionish RegExp)
313 return typeof obj === "object" || typeof obj === "function" ?
314 class2type[ toString.call(obj) ] || "object" :
315 typeof obj;
316 },
317  
318 // Evaluates a script in a global context
319 globalEval: function( code ) {
320 var script,
321 indirect = eval;
322  
323 code = jQuery.trim( code );
324  
325 if ( code ) {
326 // If the code includes a valid, prologue position
327 // strict mode pragma, execute code by injecting a
328 // script tag into the document.
329 if ( code.indexOf("use strict") === 1 ) {
330 script = document.createElement("script");
331 script.text = code;
332 document.head.appendChild( script ).parentNode.removeChild( script );
333 } else {
334 // Otherwise, avoid the DOM node creation, insertion
335 // and removal by using an indirect global eval
336 indirect( code );
337 }
338 }
339 },
340  
341 // Convert dashed to camelCase; used by the css and data modules
342 // Microsoft forgot to hump their vendor prefix (#9572)
343 camelCase: function( string ) {
344 return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
345 },
346  
347 nodeName: function( elem, name ) {
348 return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
349 },
350  
351 // args is for internal usage only
352 each: function( obj, callback, args ) {
353 var value,
354 i = 0,
355 length = obj.length,
356 isArray = isArraylike( obj );
357  
358 if ( args ) {
359 if ( isArray ) {
360 for ( ; i < length; i++ ) {
361 value = callback.apply( obj[ i ], args );
362  
363 if ( value === false ) {
364 break;
365 }
366 }
367 } else {
368 for ( i in obj ) {
369 value = callback.apply( obj[ i ], args );
370  
371 if ( value === false ) {
372 break;
373 }
374 }
375 }
376  
377 // A special, fast, case for the most common use of each
378 } else {
379 if ( isArray ) {
380 for ( ; i < length; i++ ) {
381 value = callback.call( obj[ i ], i, obj[ i ] );
382  
383 if ( value === false ) {
384 break;
385 }
386 }
387 } else {
388 for ( i in obj ) {
389 value = callback.call( obj[ i ], i, obj[ i ] );
390  
391 if ( value === false ) {
392 break;
393 }
394 }
395 }
396 }
397  
398 return obj;
399 },
400  
401 trim: function( text ) {
402 return text == null ? "" : trim.call( text );
403 },
404  
405 // results is for internal usage only
406 makeArray: function( arr, results ) {
407 var ret = results || [];
408  
409 if ( arr != null ) {
410 if ( isArraylike( Object(arr) ) ) {
411 jQuery.merge( ret,
412 typeof arr === "string" ?
413 [ arr ] : arr
414 );
415 } else {
416 push.call( ret, arr );
417 }
418 }
419  
420 return ret;
421 },
422  
423 inArray: function( elem, arr, i ) {
424 return arr == null ? -1 : indexOf.call( arr, elem, i );
425 },
426  
427 merge: function( first, second ) {
428 var len = +second.length,
429 j = 0,
430 i = first.length;
431  
432 for ( ; j < len; j++ ) {
433 first[ i++ ] = second[ j ];
434 }
435  
436 first.length = i;
437  
438 return first;
439 },
440  
441 grep: function( elems, callback, invert ) {
442 var callbackInverse,
443 matches = [],
444 i = 0,
445 length = elems.length,
446 callbackExpect = !invert;
447  
448 // Go through the array, only saving the items
449 // that pass the validator function
450 for ( ; i < length; i++ ) {
451 callbackInverse = !callback( elems[ i ], i );
452 if ( callbackInverse !== callbackExpect ) {
453 matches.push( elems[ i ] );
454 }
455 }
456  
457 return matches;
458 },
459  
460 // arg is for internal usage only
461 map: function( elems, callback, arg ) {
462 var value,
463 i = 0,
464 length = elems.length,
465 isArray = isArraylike( elems ),
466 ret = [];
467  
468 // Go through the array, translating each of the items to their new values
469 if ( isArray ) {
470 for ( ; i < length; i++ ) {
471 value = callback( elems[ i ], i, arg );
472  
473 if ( value != null ) {
474 ret.push( value );
475 }
476 }
477  
478 // Go through every key on the object,
479 } else {
480 for ( i in elems ) {
481 value = callback( elems[ i ], i, arg );
482  
483 if ( value != null ) {
484 ret.push( value );
485 }
486 }
487 }
488  
489 // Flatten any nested arrays
490 return concat.apply( [], ret );
491 },
492  
493 // A global GUID counter for objects
494 guid: 1,
495  
496 // Bind a function to a context, optionally partially applying any
497 // arguments.
498 proxy: function( fn, context ) {
499 var tmp, args, proxy;
500  
501 if ( typeof context === "string" ) {
502 tmp = fn[ context ];
503 context = fn;
504 fn = tmp;
505 }
506  
507 // Quick check to determine if target is callable, in the spec
508 // this throws a TypeError, but we will just return undefined.
509 if ( !jQuery.isFunction( fn ) ) {
510 return undefined;
511 }
512  
513 // Simulated bind
514 args = slice.call( arguments, 2 );
515 proxy = function() {
516 return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
517 };
518  
519 // Set the guid of unique handler to the same of original handler, so it can be removed
520 proxy.guid = fn.guid = fn.guid || jQuery.guid++;
521  
522 return proxy;
523 },
524  
525 now: Date.now,
526  
527 // jQuery.support is not used in Core but other projects attach their
528 // properties to it so it needs to exist.
529 support: support
530 });
531  
532 // Populate the class2type map
533 jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
534 class2type[ "[object " + name + "]" ] = name.toLowerCase();
535 });
536  
537 function isArraylike( obj ) {
538 var length = obj.length,
539 type = jQuery.type( obj );
540  
541 if ( type === "function" || jQuery.isWindow( obj ) ) {
542 return false;
543 }
544  
545 if ( obj.nodeType === 1 && length ) {
546 return true;
547 }
548  
549 return type === "array" || length === 0 ||
550 typeof length === "number" && length > 0 && ( length - 1 ) in obj;
551 }
552 var Sizzle =
553 /*!
554 * Sizzle CSS Selector Engine v1.10.16
555 * http://sizzlejs.com/
556 *
557 * Copyright 2013 jQuery Foundation, Inc. and other contributors
558 * Released under the MIT license
559 * http://jquery.org/license
560 *
561 * Date: 2014-01-13
562 */
563 (function( window ) {
564  
565 var i,
566 support,
567 Expr,
568 getText,
569 isXML,
570 compile,
571 outermostContext,
572 sortInput,
573 hasDuplicate,
574  
575 // Local document vars
576 setDocument,
577 document,
578 docElem,
579 documentIsHTML,
580 rbuggyQSA,
581 rbuggyMatches,
582 matches,
583 contains,
584  
585 // Instance-specific data
586 expando = "sizzle" + -(new Date()),
587 preferredDoc = window.document,
588 dirruns = 0,
589 done = 0,
590 classCache = createCache(),
591 tokenCache = createCache(),
592 compilerCache = createCache(),
593 sortOrder = function( a, b ) {
594 if ( a === b ) {
595 hasDuplicate = true;
596 }
597 return 0;
598 },
599  
600 // General-purpose constants
601 strundefined = typeof undefined,
602 MAX_NEGATIVE = 1 << 31,
603  
604 // Instance methods
605 hasOwn = ({}).hasOwnProperty,
606 arr = [],
607 pop = arr.pop,
608 push_native = arr.push,
609 push = arr.push,
610 slice = arr.slice,
611 // Use a stripped-down indexOf if we can't use a native one
612 indexOf = arr.indexOf || function( elem ) {
613 var i = 0,
614 len = this.length;
615 for ( ; i < len; i++ ) {
616 if ( this[i] === elem ) {
617 return i;
618 }
619 }
620 return -1;
621 },
622  
623 booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
624  
625 // Regular expressions
626  
627 // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
628 whitespace = "[\\x20\\t\\r\\n\\f]",
629 // http://www.w3.org/TR/css3-syntax/#characters
630 characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
631  
632 // Loosely modeled on CSS identifier characters
633 // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
634 // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
635 identifier = characterEncoding.replace( "w", "w#" ),
636  
637 // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors
638 attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace +
639 "*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]",
640  
641 // Prefer arguments quoted,
642 // then not containing pseudos/brackets,
643 // then attribute selectors/non-parenthetical expressions,
644 // then anything else
645 // These preferences are here to reduce the number of selectors
646 // needing tokenize in the PSEUDO preFilter
647 pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)",
648  
649 // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
650 rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
651  
652 rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
653 rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
654  
655 rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
656  
657 rpseudo = new RegExp( pseudos ),
658 ridentifier = new RegExp( "^" + identifier + "$" ),
659  
660 matchExpr = {
661 "ID": new RegExp( "^#(" + characterEncoding + ")" ),
662 "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
663 "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
664 "ATTR": new RegExp( "^" + attributes ),
665 "PSEUDO": new RegExp( "^" + pseudos ),
666 "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
667 "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
668 "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
669 "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
670 // For use in libraries implementing .is()
671 // We use this for POS matching in `select`
672 "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
673 whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
674 },
675  
676 rinputs = /^(?:input|select|textarea|button)$/i,
677 rheader = /^h\d$/i,
678  
679 rnative = /^[^{]+\{\s*\[native \w/,
680  
681 // Easily-parseable/retrievable ID or TAG or CLASS selectors
682 rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
683  
684 rsibling = /[+~]/,
685 rescape = /'|\\/g,
686  
687 // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
688 runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
689 funescape = function( _, escaped, escapedWhitespace ) {
690 var high = "0x" + escaped - 0x10000;
691 // NaN means non-codepoint
692 // Support: Firefox
693 // Workaround erroneous numeric interpretation of +"0x"
694 return high !== high || escapedWhitespace ?
695 escaped :
696 high < 0 ?
697 // BMP codepoint
698 String.fromCharCode( high + 0x10000 ) :
699 // Supplemental Plane codepoint (surrogate pair)
700 String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
701 };
702  
703 // Optimize for push.apply( _, NodeList )
704 try {
705 push.apply(
706 (arr = slice.call( preferredDoc.childNodes )),
707 preferredDoc.childNodes
708 );
709 // Support: Android<4.0
710 // Detect silently failing push.apply
711 arr[ preferredDoc.childNodes.length ].nodeType;
712 } catch ( e ) {
713 push = { apply: arr.length ?
714  
715 // Leverage slice if possible
716 function( target, els ) {
717 push_native.apply( target, slice.call(els) );
718 } :
719  
720 // Support: IE<9
721 // Otherwise append directly
722 function( target, els ) {
723 var j = target.length,
724 i = 0;
725 // Can't trust NodeList.length
726 while ( (target[j++] = els[i++]) ) {}
727 target.length = j - 1;
728 }
729 };
730 }
731  
732 function Sizzle( selector, context, results, seed ) {
733 var match, elem, m, nodeType,
734 // QSA vars
735 i, groups, old, nid, newContext, newSelector;
736  
737 if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
738 setDocument( context );
739 }
740  
741 context = context || document;
742 results = results || [];
743  
744 if ( !selector || typeof selector !== "string" ) {
745 return results;
746 }
747  
748 if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
749 return [];
750 }
751  
752 if ( documentIsHTML && !seed ) {
753  
754 // Shortcuts
755 if ( (match = rquickExpr.exec( selector )) ) {
756 // Speed-up: Sizzle("#ID")
757 if ( (m = match[1]) ) {
758 if ( nodeType === 9 ) {
759 elem = context.getElementById( m );
760 // Check parentNode to catch when Blackberry 4.6 returns
761 // nodes that are no longer in the document (jQuery #6963)
762 if ( elem && elem.parentNode ) {
763 // Handle the case where IE, Opera, and Webkit return items
764 // by name instead of ID
765 if ( elem.id === m ) {
766 results.push( elem );
767 return results;
768 }
769 } else {
770 return results;
771 }
772 } else {
773 // Context is not a document
774 if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
775 contains( context, elem ) && elem.id === m ) {
776 results.push( elem );
777 return results;
778 }
779 }
780  
781 // Speed-up: Sizzle("TAG")
782 } else if ( match[2] ) {
783 push.apply( results, context.getElementsByTagName( selector ) );
784 return results;
785  
786 // Speed-up: Sizzle(".CLASS")
787 } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
788 push.apply( results, context.getElementsByClassName( m ) );
789 return results;
790 }
791 }
792  
793 // QSA path
794 if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
795 nid = old = expando;
796 newContext = context;
797 newSelector = nodeType === 9 && selector;
798  
799 // qSA works strangely on Element-rooted queries
800 // We can work around this by specifying an extra ID on the root
801 // and working up from there (Thanks to Andrew Dupont for the technique)
802 // IE 8 doesn't work on object elements
803 if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
804 groups = tokenize( selector );
805  
806 if ( (old = context.getAttribute("id")) ) {
807 nid = old.replace( rescape, "\\$&" );
808 } else {
809 context.setAttribute( "id", nid );
810 }
811 nid = "[id='" + nid + "'] ";
812  
813 i = groups.length;
814 while ( i-- ) {
815 groups[i] = nid + toSelector( groups[i] );
816 }
817 newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
818 newSelector = groups.join(",");
819 }
820  
821 if ( newSelector ) {
822 try {
823 push.apply( results,
824 newContext.querySelectorAll( newSelector )
825 );
826 return results;
827 } catch(qsaError) {
828 } finally {
829 if ( !old ) {
830 context.removeAttribute("id");
831 }
832 }
833 }
834 }
835 }
836  
837 // All others
838 return select( selector.replace( rtrim, "$1" ), context, results, seed );
839 }
840  
841 /**
842 * Create key-value caches of limited size
843 * @returns {Function(string, Object)} Returns the Object data after storing it on itself with
844 * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
845 * deleting the oldest entry
846 */
847 function createCache() {
848 var keys = [];
849  
850 function cache( key, value ) {
851 // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
852 if ( keys.push( key + " " ) > Expr.cacheLength ) {
853 // Only keep the most recent entries
854 delete cache[ keys.shift() ];
855 }
856 return (cache[ key + " " ] = value);
857 }
858 return cache;
859 }
860  
861 /**
862 * Mark a function for special use by Sizzle
863 * @param {Function} fn The function to mark
864 */
865 function markFunction( fn ) {
866 fn[ expando ] = true;
867 return fn;
868 }
869  
870 /**
871 * Support testing using an element
872 * @param {Function} fn Passed the created div and expects a boolean result
873 */
874 function assert( fn ) {
875 var div = document.createElement("div");
876  
877 try {
878 return !!fn( div );
879 } catch (e) {
880 return false;
881 } finally {
882 // Remove from its parent by default
883 if ( div.parentNode ) {
884 div.parentNode.removeChild( div );
885 }
886 // release memory in IE
887 div = null;
888 }
889 }
890  
891 /**
892 * Adds the same handler for all of the specified attrs
893 * @param {String} attrs Pipe-separated list of attributes
894 * @param {Function} handler The method that will be applied
895 */
896 function addHandle( attrs, handler ) {
897 var arr = attrs.split("|"),
898 i = attrs.length;
899  
900 while ( i-- ) {
901 Expr.attrHandle[ arr[i] ] = handler;
902 }
903 }
904  
905 /**
906 * Checks document order of two siblings
907 * @param {Element} a
908 * @param {Element} b
909 * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
910 */
911 function siblingCheck( a, b ) {
912 var cur = b && a,
913 diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
914 ( ~b.sourceIndex || MAX_NEGATIVE ) -
915 ( ~a.sourceIndex || MAX_NEGATIVE );
916  
917 // Use IE sourceIndex if available on both nodes
918 if ( diff ) {
919 return diff;
920 }
921  
922 // Check if b follows a
923 if ( cur ) {
924 while ( (cur = cur.nextSibling) ) {
925 if ( cur === b ) {
926 return -1;
927 }
928 }
929 }
930  
931 return a ? 1 : -1;
932 }
933  
934 /**
935 * Returns a function to use in pseudos for input types
936 * @param {String} type
937 */
938 function createInputPseudo( type ) {
939 return function( elem ) {
940 var name = elem.nodeName.toLowerCase();
941 return name === "input" && elem.type === type;
942 };
943 }
944  
945 /**
946 * Returns a function to use in pseudos for buttons
947 * @param {String} type
948 */
949 function createButtonPseudo( type ) {
950 return function( elem ) {
951 var name = elem.nodeName.toLowerCase();
952 return (name === "input" || name === "button") && elem.type === type;
953 };
954 }
955  
956 /**
957 * Returns a function to use in pseudos for positionals
958 * @param {Function} fn
959 */
960 function createPositionalPseudo( fn ) {
961 return markFunction(function( argument ) {
962 argument = +argument;
963 return markFunction(function( seed, matches ) {
964 var j,
965 matchIndexes = fn( [], seed.length, argument ),
966 i = matchIndexes.length;
967  
968 // Match elements found at the specified indexes
969 while ( i-- ) {
970 if ( seed[ (j = matchIndexes[i]) ] ) {
971 seed[j] = !(matches[j] = seed[j]);
972 }
973 }
974 });
975 });
976 }
977  
978 /**
979 * Checks a node for validity as a Sizzle context
980 * @param {Element|Object=} context
981 * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
982 */
983 function testContext( context ) {
984 return context && typeof context.getElementsByTagName !== strundefined && context;
985 }
986  
987 // Expose support vars for convenience
988 support = Sizzle.support = {};
989  
990 /**
991 * Detects XML nodes
992 * @param {Element|Object} elem An element or a document
993 * @returns {Boolean} True iff elem is a non-HTML XML node
994 */
995 isXML = Sizzle.isXML = function( elem ) {
996 // documentElement is verified for cases where it doesn't yet exist
997 // (such as loading iframes in IE - #4833)
998 var documentElement = elem && (elem.ownerDocument || elem).documentElement;
999 return documentElement ? documentElement.nodeName !== "HTML" : false;
1000 };
1001  
1002 /**
1003 * Sets document-related variables once based on the current document
1004 * @param {Element|Object} [doc] An element or document object to use to set the document
1005 * @returns {Object} Returns the current document
1006 */
1007 setDocument = Sizzle.setDocument = function( node ) {
1008 var hasCompare,
1009 doc = node ? node.ownerDocument || node : preferredDoc,
1010 parent = doc.defaultView;
1011  
1012 // If no document and documentElement is available, return
1013 if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
1014 return document;
1015 }
1016  
1017 // Set our document
1018 document = doc;
1019 docElem = doc.documentElement;
1020  
1021 // Support tests
1022 documentIsHTML = !isXML( doc );
1023  
1024 // Support: IE>8
1025 // If iframe document is assigned to "document" variable and if iframe has been reloaded,
1026 // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
1027 // IE6-8 do not support the defaultView property so parent will be undefined
1028 if ( parent && parent !== parent.top ) {
1029 // IE11 does not have attachEvent, so all must suffer
1030 if ( parent.addEventListener ) {
1031 parent.addEventListener( "unload", function() {
1032 setDocument();
1033 }, false );
1034 } else if ( parent.attachEvent ) {
1035 parent.attachEvent( "onunload", function() {
1036 setDocument();
1037 });
1038 }
1039 }
1040  
1041 /* Attributes
1042 ---------------------------------------------------------------------- */
1043  
1044 // Support: IE<8
1045 // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans)
1046 support.attributes = assert(function( div ) {
1047 div.className = "i";
1048 return !div.getAttribute("className");
1049 });
1050  
1051 /* getElement(s)By*
1052 ---------------------------------------------------------------------- */
1053  
1054 // Check if getElementsByTagName("*") returns only elements
1055 support.getElementsByTagName = assert(function( div ) {
1056 div.appendChild( doc.createComment("") );
1057 return !div.getElementsByTagName("*").length;
1058 });
1059  
1060 // Check if getElementsByClassName can be trusted
1061 support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) {
1062 div.innerHTML = "<div class='a'></div><div class='a i'></div>";
1063  
1064 // Support: Safari<4
1065 // Catch class over-caching
1066 div.firstChild.className = "i";
1067 // Support: Opera<10
1068 // Catch gEBCN failure to find non-leading classes
1069 return div.getElementsByClassName("i").length === 2;
1070 });
1071  
1072 // Support: IE<10
1073 // Check if getElementById returns elements by name
1074 // The broken getElementById methods don't pick up programatically-set names,
1075 // so use a roundabout getElementsByName test
1076 support.getById = assert(function( div ) {
1077 docElem.appendChild( div ).id = expando;
1078 return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
1079 });
1080  
1081 // ID find and filter
1082 if ( support.getById ) {
1083 Expr.find["ID"] = function( id, context ) {
1084 if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
1085 var m = context.getElementById( id );
1086 // Check parentNode to catch when Blackberry 4.6 returns
1087 // nodes that are no longer in the document #6963
1088 return m && m.parentNode ? [m] : [];
1089 }
1090 };
1091 Expr.filter["ID"] = function( id ) {
1092 var attrId = id.replace( runescape, funescape );
1093 return function( elem ) {
1094 return elem.getAttribute("id") === attrId;
1095 };
1096 };
1097 } else {
1098 // Support: IE6/7
1099 // getElementById is not reliable as a find shortcut
1100 delete Expr.find["ID"];
1101  
1102 Expr.filter["ID"] = function( id ) {
1103 var attrId = id.replace( runescape, funescape );
1104 return function( elem ) {
1105 var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
1106 return node && node.value === attrId;
1107 };
1108 };
1109 }
1110  
1111 // Tag
1112 Expr.find["TAG"] = support.getElementsByTagName ?
1113 function( tag, context ) {
1114 if ( typeof context.getElementsByTagName !== strundefined ) {
1115 return context.getElementsByTagName( tag );
1116 }
1117 } :
1118 function( tag, context ) {
1119 var elem,
1120 tmp = [],
1121 i = 0,
1122 results = context.getElementsByTagName( tag );
1123  
1124 // Filter out possible comments
1125 if ( tag === "*" ) {
1126 while ( (elem = results[i++]) ) {
1127 if ( elem.nodeType === 1 ) {
1128 tmp.push( elem );
1129 }
1130 }
1131  
1132 return tmp;
1133 }
1134 return results;
1135 };
1136  
1137 // Class
1138 Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
1139 if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
1140 return context.getElementsByClassName( className );
1141 }
1142 };
1143  
1144 /* QSA/matchesSelector
1145 ---------------------------------------------------------------------- */
1146  
1147 // QSA and matchesSelector support
1148  
1149 // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
1150 rbuggyMatches = [];
1151  
1152 // qSa(:focus) reports false when true (Chrome 21)
1153 // We allow this because of a bug in IE8/9 that throws an error
1154 // whenever `document.activeElement` is accessed on an iframe
1155 // So, we allow :focus to pass through QSA all the time to avoid the IE error
1156 // See http://bugs.jquery.com/ticket/13378
1157 rbuggyQSA = [];
1158  
1159 if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
1160 // Build QSA regex
1161 // Regex strategy adopted from Diego Perini
1162 assert(function( div ) {
1163 // Select is set to empty string on purpose
1164 // This is to test IE's treatment of not explicitly
1165 // setting a boolean content attribute,
1166 // since its presence should be enough
1167 // http://bugs.jquery.com/ticket/12359
1168 div.innerHTML = "<select t=''><option selected=''></option></select>";
1169  
1170 // Support: IE8, Opera 10-12
1171 // Nothing should be selected when empty strings follow ^= or $= or *=
1172 if ( div.querySelectorAll("[t^='']").length ) {
1173 rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
1174 }
1175  
1176 // Support: IE8
1177 // Boolean attributes and "value" are not treated correctly
1178 if ( !div.querySelectorAll("[selected]").length ) {
1179 rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
1180 }
1181  
1182 // Webkit/Opera - :checked should return selected option elements
1183 // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1184 // IE8 throws error here and will not see later tests
1185 if ( !div.querySelectorAll(":checked").length ) {
1186 rbuggyQSA.push(":checked");
1187 }
1188 });
1189  
1190 assert(function( div ) {
1191 // Support: Windows 8 Native Apps
1192 // The type and name attributes are restricted during .innerHTML assignment
1193 var input = doc.createElement("input");
1194 input.setAttribute( "type", "hidden" );
1195 div.appendChild( input ).setAttribute( "name", "D" );
1196  
1197 // Support: IE8
1198 // Enforce case-sensitivity of name attribute
1199 if ( div.querySelectorAll("[name=d]").length ) {
1200 rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
1201 }
1202  
1203 // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
1204 // IE8 throws error here and will not see later tests
1205 if ( !div.querySelectorAll(":enabled").length ) {
1206 rbuggyQSA.push( ":enabled", ":disabled" );
1207 }
1208  
1209 // Opera 10-11 does not throw on post-comma invalid pseudos
1210 div.querySelectorAll("*,:x");
1211 rbuggyQSA.push(",.*:");
1212 });
1213 }
1214  
1215 if ( (support.matchesSelector = rnative.test( (matches = docElem.webkitMatchesSelector ||
1216 docElem.mozMatchesSelector ||
1217 docElem.oMatchesSelector ||
1218 docElem.msMatchesSelector) )) ) {
1219  
1220 assert(function( div ) {
1221 // Check to see if it's possible to do matchesSelector
1222 // on a disconnected node (IE 9)
1223 support.disconnectedMatch = matches.call( div, "div" );
1224  
1225 // This should fail with an exception
1226 // Gecko does not error, returns false instead
1227 matches.call( div, "[s!='']:x" );
1228 rbuggyMatches.push( "!=", pseudos );
1229 });
1230 }
1231  
1232 rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
1233 rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
1234  
1235 /* Contains
1236 ---------------------------------------------------------------------- */
1237 hasCompare = rnative.test( docElem.compareDocumentPosition );
1238  
1239 // Element contains another
1240 // Purposefully does not implement inclusive descendent
1241 // As in, an element does not contain itself
1242 contains = hasCompare || rnative.test( docElem.contains ) ?
1243 function( a, b ) {
1244 var adown = a.nodeType === 9 ? a.documentElement : a,
1245 bup = b && b.parentNode;
1246 return a === bup || !!( bup && bup.nodeType === 1 && (
1247 adown.contains ?
1248 adown.contains( bup ) :
1249 a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
1250 ));
1251 } :
1252 function( a, b ) {
1253 if ( b ) {
1254 while ( (b = b.parentNode) ) {
1255 if ( b === a ) {
1256 return true;
1257 }
1258 }
1259 }
1260 return false;
1261 };
1262  
1263 /* Sorting
1264 ---------------------------------------------------------------------- */
1265  
1266 // Document order sorting
1267 sortOrder = hasCompare ?
1268 function( a, b ) {
1269  
1270 // Flag for duplicate removal
1271 if ( a === b ) {
1272 hasDuplicate = true;
1273 return 0;
1274 }
1275  
1276 // Sort on method existence if only one input has compareDocumentPosition
1277 var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
1278 if ( compare ) {
1279 return compare;
1280 }
1281  
1282 // Calculate position if both inputs belong to the same document
1283 compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
1284 a.compareDocumentPosition( b ) :
1285  
1286 // Otherwise we know they are disconnected
1287 1;
1288  
1289 // Disconnected nodes
1290 if ( compare & 1 ||
1291 (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
1292  
1293 // Choose the first element that is related to our preferred document
1294 if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
1295 return -1;
1296 }
1297 if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
1298 return 1;
1299 }
1300  
1301 // Maintain original order
1302 return sortInput ?
1303 ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
1304 0;
1305 }
1306  
1307 return compare & 4 ? -1 : 1;
1308 } :
1309 function( a, b ) {
1310 // Exit early if the nodes are identical
1311 if ( a === b ) {
1312 hasDuplicate = true;
1313 return 0;
1314 }
1315  
1316 var cur,
1317 i = 0,
1318 aup = a.parentNode,
1319 bup = b.parentNode,
1320 ap = [ a ],
1321 bp = [ b ];
1322  
1323 // Parentless nodes are either documents or disconnected
1324 if ( !aup || !bup ) {
1325 return a === doc ? -1 :
1326 b === doc ? 1 :
1327 aup ? -1 :
1328 bup ? 1 :
1329 sortInput ?
1330 ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
1331 0;
1332  
1333 // If the nodes are siblings, we can do a quick check
1334 } else if ( aup === bup ) {
1335 return siblingCheck( a, b );
1336 }
1337  
1338 // Otherwise we need full lists of their ancestors for comparison
1339 cur = a;
1340 while ( (cur = cur.parentNode) ) {
1341 ap.unshift( cur );
1342 }
1343 cur = b;
1344 while ( (cur = cur.parentNode) ) {
1345 bp.unshift( cur );
1346 }
1347  
1348 // Walk down the tree looking for a discrepancy
1349 while ( ap[i] === bp[i] ) {
1350 i++;
1351 }
1352  
1353 return i ?
1354 // Do a sibling check if the nodes have a common ancestor
1355 siblingCheck( ap[i], bp[i] ) :
1356  
1357 // Otherwise nodes in our document sort first
1358 ap[i] === preferredDoc ? -1 :
1359 bp[i] === preferredDoc ? 1 :
1360 0;
1361 };
1362  
1363 return doc;
1364 };
1365  
1366 Sizzle.matches = function( expr, elements ) {
1367 return Sizzle( expr, null, null, elements );
1368 };
1369  
1370 Sizzle.matchesSelector = function( elem, expr ) {
1371 // Set document vars if needed
1372 if ( ( elem.ownerDocument || elem ) !== document ) {
1373 setDocument( elem );
1374 }
1375  
1376 // Make sure that attribute selectors are quoted
1377 expr = expr.replace( rattributeQuotes, "='$1']" );
1378  
1379 if ( support.matchesSelector && documentIsHTML &&
1380 ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
1381 ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
1382  
1383 try {
1384 var ret = matches.call( elem, expr );
1385  
1386 // IE 9's matchesSelector returns false on disconnected nodes
1387 if ( ret || support.disconnectedMatch ||
1388 // As well, disconnected nodes are said to be in a document
1389 // fragment in IE 9
1390 elem.document && elem.document.nodeType !== 11 ) {
1391 return ret;
1392 }
1393 } catch(e) {}
1394 }
1395  
1396 return Sizzle( expr, document, null, [elem] ).length > 0;
1397 };
1398  
1399 Sizzle.contains = function( context, elem ) {
1400 // Set document vars if needed
1401 if ( ( context.ownerDocument || context ) !== document ) {
1402 setDocument( context );
1403 }
1404 return contains( context, elem );
1405 };
1406  
1407 Sizzle.attr = function( elem, name ) {
1408 // Set document vars if needed
1409 if ( ( elem.ownerDocument || elem ) !== document ) {
1410 setDocument( elem );
1411 }
1412  
1413 var fn = Expr.attrHandle[ name.toLowerCase() ],
1414 // Don't get fooled by Object.prototype properties (jQuery #13807)
1415 val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
1416 fn( elem, name, !documentIsHTML ) :
1417 undefined;
1418  
1419 return val !== undefined ?
1420 val :
1421 support.attributes || !documentIsHTML ?
1422 elem.getAttribute( name ) :
1423 (val = elem.getAttributeNode(name)) && val.specified ?
1424 val.value :
1425 null;
1426 };
1427  
1428 Sizzle.error = function( msg ) {
1429 throw new Error( "Syntax error, unrecognized expression: " + msg );
1430 };
1431  
1432 /**
1433 * Document sorting and removing duplicates
1434 * @param {ArrayLike} results
1435 */
1436 Sizzle.uniqueSort = function( results ) {
1437 var elem,
1438 duplicates = [],
1439 j = 0,
1440 i = 0;
1441  
1442 // Unless we *know* we can detect duplicates, assume their presence
1443 hasDuplicate = !support.detectDuplicates;
1444 sortInput = !support.sortStable && results.slice( 0 );
1445 results.sort( sortOrder );
1446  
1447 if ( hasDuplicate ) {
1448 while ( (elem = results[i++]) ) {
1449 if ( elem === results[ i ] ) {
1450 j = duplicates.push( i );
1451 }
1452 }
1453 while ( j-- ) {
1454 results.splice( duplicates[ j ], 1 );
1455 }
1456 }
1457  
1458 // Clear input after sorting to release objects
1459 // See https://github.com/jquery/sizzle/pull/225
1460 sortInput = null;
1461  
1462 return results;
1463 };
1464  
1465 /**
1466 * Utility function for retrieving the text value of an array of DOM nodes
1467 * @param {Array|Element} elem
1468 */
1469 getText = Sizzle.getText = function( elem ) {
1470 var node,
1471 ret = "",
1472 i = 0,
1473 nodeType = elem.nodeType;
1474  
1475 if ( !nodeType ) {
1476 // If no nodeType, this is expected to be an array
1477 while ( (node = elem[i++]) ) {
1478 // Do not traverse comment nodes
1479 ret += getText( node );
1480 }
1481 } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
1482 // Use textContent for elements
1483 // innerText usage removed for consistency of new lines (jQuery #11153)
1484 if ( typeof elem.textContent === "string" ) {
1485 return elem.textContent;
1486 } else {
1487 // Traverse its children
1488 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1489 ret += getText( elem );
1490 }
1491 }
1492 } else if ( nodeType === 3 || nodeType === 4 ) {
1493 return elem.nodeValue;
1494 }
1495 // Do not include comment or processing instruction nodes
1496  
1497 return ret;
1498 };
1499  
1500 Expr = Sizzle.selectors = {
1501  
1502 // Can be adjusted by the user
1503 cacheLength: 50,
1504  
1505 createPseudo: markFunction,
1506  
1507 match: matchExpr,
1508  
1509 attrHandle: {},
1510  
1511 find: {},
1512  
1513 relative: {
1514 ">": { dir: "parentNode", first: true },
1515 " ": { dir: "parentNode" },
1516 "+": { dir: "previousSibling", first: true },
1517 "~": { dir: "previousSibling" }
1518 },
1519  
1520 preFilter: {
1521 "ATTR": function( match ) {
1522 match[1] = match[1].replace( runescape, funescape );
1523  
1524 // Move the given value to match[3] whether quoted or unquoted
1525 match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape );
1526  
1527 if ( match[2] === "~=" ) {
1528 match[3] = " " + match[3] + " ";
1529 }
1530  
1531 return match.slice( 0, 4 );
1532 },
1533  
1534 "CHILD": function( match ) {
1535 /* matches from matchExpr["CHILD"]
1536 1 type (only|nth|...)
1537 2 what (child|of-type)
1538 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
1539 4 xn-component of xn+y argument ([+-]?\d*n|)
1540 5 sign of xn-component
1541 6 x of xn-component
1542 7 sign of y-component
1543 8 y of y-component
1544 */
1545 match[1] = match[1].toLowerCase();
1546  
1547 if ( match[1].slice( 0, 3 ) === "nth" ) {
1548 // nth-* requires argument
1549 if ( !match[3] ) {
1550 Sizzle.error( match[0] );
1551 }
1552  
1553 // numeric x and y parameters for Expr.filter.CHILD
1554 // remember that false/true cast respectively to 0/1
1555 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
1556 match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
1557  
1558 // other types prohibit arguments
1559 } else if ( match[3] ) {
1560 Sizzle.error( match[0] );
1561 }
1562  
1563 return match;
1564 },
1565  
1566 "PSEUDO": function( match ) {
1567 var excess,
1568 unquoted = !match[5] && match[2];
1569  
1570 if ( matchExpr["CHILD"].test( match[0] ) ) {
1571 return null;
1572 }
1573  
1574 // Accept quoted arguments as-is
1575 if ( match[3] && match[4] !== undefined ) {
1576 match[2] = match[4];
1577  
1578 // Strip excess characters from unquoted arguments
1579 } else if ( unquoted && rpseudo.test( unquoted ) &&
1580 // Get excess from tokenize (recursively)
1581 (excess = tokenize( unquoted, true )) &&
1582 // advance to the next closing parenthesis
1583 (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
1584  
1585 // excess is a negative index
1586 match[0] = match[0].slice( 0, excess );
1587 match[2] = unquoted.slice( 0, excess );
1588 }
1589  
1590 // Return only captures needed by the pseudo filter method (type and argument)
1591 return match.slice( 0, 3 );
1592 }
1593 },
1594  
1595 filter: {
1596  
1597 "TAG": function( nodeNameSelector ) {
1598 var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
1599 return nodeNameSelector === "*" ?
1600 function() { return true; } :
1601 function( elem ) {
1602 return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
1603 };
1604 },
1605  
1606 "CLASS": function( className ) {
1607 var pattern = classCache[ className + " " ];
1608  
1609 return pattern ||
1610 (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
1611 classCache( className, function( elem ) {
1612 return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" );
1613 });
1614 },
1615  
1616 "ATTR": function( name, operator, check ) {
1617 return function( elem ) {
1618 var result = Sizzle.attr( elem, name );
1619  
1620 if ( result == null ) {
1621 return operator === "!=";
1622 }
1623 if ( !operator ) {
1624 return true;
1625 }
1626  
1627 result += "";
1628  
1629 return operator === "=" ? result === check :
1630 operator === "!=" ? result !== check :
1631 operator === "^=" ? check && result.indexOf( check ) === 0 :
1632 operator === "*=" ? check && result.indexOf( check ) > -1 :
1633 operator === "$=" ? check && result.slice( -check.length ) === check :
1634 operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
1635 operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
1636 false;
1637 };
1638 },
1639  
1640 "CHILD": function( type, what, argument, first, last ) {
1641 var simple = type.slice( 0, 3 ) !== "nth",
1642 forward = type.slice( -4 ) !== "last",
1643 ofType = what === "of-type";
1644  
1645 return first === 1 && last === 0 ?
1646  
1647 // Shortcut for :nth-*(n)
1648 function( elem ) {
1649 return !!elem.parentNode;
1650 } :
1651  
1652 function( elem, context, xml ) {
1653 var cache, outerCache, node, diff, nodeIndex, start,
1654 dir = simple !== forward ? "nextSibling" : "previousSibling",
1655 parent = elem.parentNode,
1656 name = ofType && elem.nodeName.toLowerCase(),
1657 useCache = !xml && !ofType;
1658  
1659 if ( parent ) {
1660  
1661 // :(first|last|only)-(child|of-type)
1662 if ( simple ) {
1663 while ( dir ) {
1664 node = elem;
1665 while ( (node = node[ dir ]) ) {
1666 if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
1667 return false;
1668 }
1669 }
1670 // Reverse direction for :only-* (if we haven't yet done so)
1671 start = dir = type === "only" && !start && "nextSibling";
1672 }
1673 return true;
1674 }
1675  
1676 start = [ forward ? parent.firstChild : parent.lastChild ];
1677  
1678 // non-xml :nth-child(...) stores cache data on `parent`
1679 if ( forward && useCache ) {
1680 // Seek `elem` from a previously-cached index
1681 outerCache = parent[ expando ] || (parent[ expando ] = {});
1682 cache = outerCache[ type ] || [];
1683 nodeIndex = cache[0] === dirruns && cache[1];
1684 diff = cache[0] === dirruns && cache[2];
1685 node = nodeIndex && parent.childNodes[ nodeIndex ];
1686  
1687 while ( (node = ++nodeIndex && node && node[ dir ] ||
1688  
1689 // Fallback to seeking `elem` from the start
1690 (diff = nodeIndex = 0) || start.pop()) ) {
1691  
1692 // When found, cache indexes on `parent` and break
1693 if ( node.nodeType === 1 && ++diff && node === elem ) {
1694 outerCache[ type ] = [ dirruns, nodeIndex, diff ];
1695 break;
1696 }
1697 }
1698  
1699 // Use previously-cached element index if available
1700 } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
1701 diff = cache[1];
1702  
1703 // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
1704 } else {
1705 // Use the same loop as above to seek `elem` from the start
1706 while ( (node = ++nodeIndex && node && node[ dir ] ||
1707 (diff = nodeIndex = 0) || start.pop()) ) {
1708  
1709 if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
1710 // Cache the index of each encountered element
1711 if ( useCache ) {
1712 (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
1713 }
1714  
1715 if ( node === elem ) {
1716 break;
1717 }
1718 }
1719 }
1720 }
1721  
1722 // Incorporate the offset, then check against cycle size
1723 diff -= last;
1724 return diff === first || ( diff % first === 0 && diff / first >= 0 );
1725 }
1726 };
1727 },
1728  
1729 "PSEUDO": function( pseudo, argument ) {
1730 // pseudo-class names are case-insensitive
1731 // http://www.w3.org/TR/selectors/#pseudo-classes
1732 // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
1733 // Remember that setFilters inherits from pseudos
1734 var args,
1735 fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
1736 Sizzle.error( "unsupported pseudo: " + pseudo );
1737  
1738 // The user may use createPseudo to indicate that
1739 // arguments are needed to create the filter function
1740 // just as Sizzle does
1741 if ( fn[ expando ] ) {
1742 return fn( argument );
1743 }
1744  
1745 // But maintain support for old signatures
1746 if ( fn.length > 1 ) {
1747 args = [ pseudo, pseudo, "", argument ];
1748 return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
1749 markFunction(function( seed, matches ) {
1750 var idx,
1751 matched = fn( seed, argument ),
1752 i = matched.length;
1753 while ( i-- ) {
1754 idx = indexOf.call( seed, matched[i] );
1755 seed[ idx ] = !( matches[ idx ] = matched[i] );
1756 }
1757 }) :
1758 function( elem ) {
1759 return fn( elem, 0, args );
1760 };
1761 }
1762  
1763 return fn;
1764 }
1765 },
1766  
1767 pseudos: {
1768 // Potentially complex pseudos
1769 "not": markFunction(function( selector ) {
1770 // Trim the selector passed to compile
1771 // to avoid treating leading and trailing
1772 // spaces as combinators
1773 var input = [],
1774 results = [],
1775 matcher = compile( selector.replace( rtrim, "$1" ) );
1776  
1777 return matcher[ expando ] ?
1778 markFunction(function( seed, matches, context, xml ) {
1779 var elem,
1780 unmatched = matcher( seed, null, xml, [] ),
1781 i = seed.length;
1782  
1783 // Match elements unmatched by `matcher`
1784 while ( i-- ) {
1785 if ( (elem = unmatched[i]) ) {
1786 seed[i] = !(matches[i] = elem);
1787 }
1788 }
1789 }) :
1790 function( elem, context, xml ) {
1791 input[0] = elem;
1792 matcher( input, null, xml, results );
1793 return !results.pop();
1794 };
1795 }),
1796  
1797 "has": markFunction(function( selector ) {
1798 return function( elem ) {
1799 return Sizzle( selector, elem ).length > 0;
1800 };
1801 }),
1802  
1803 "contains": markFunction(function( text ) {
1804 return function( elem ) {
1805 return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
1806 };
1807 }),
1808  
1809 // "Whether an element is represented by a :lang() selector
1810 // is based solely on the element's language value
1811 // being equal to the identifier C,
1812 // or beginning with the identifier C immediately followed by "-".
1813 // The matching of C against the element's language value is performed case-insensitively.
1814 // The identifier C does not have to be a valid language name."
1815 // http://www.w3.org/TR/selectors/#lang-pseudo
1816 "lang": markFunction( function( lang ) {
1817 // lang value must be a valid identifier
1818 if ( !ridentifier.test(lang || "") ) {
1819 Sizzle.error( "unsupported lang: " + lang );
1820 }
1821 lang = lang.replace( runescape, funescape ).toLowerCase();
1822 return function( elem ) {
1823 var elemLang;
1824 do {
1825 if ( (elemLang = documentIsHTML ?
1826 elem.lang :
1827 elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
1828  
1829 elemLang = elemLang.toLowerCase();
1830 return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
1831 }
1832 } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
1833 return false;
1834 };
1835 }),
1836  
1837 // Miscellaneous
1838 "target": function( elem ) {
1839 var hash = window.location && window.location.hash;
1840 return hash && hash.slice( 1 ) === elem.id;
1841 },
1842  
1843 "root": function( elem ) {
1844 return elem === docElem;
1845 },
1846  
1847 "focus": function( elem ) {
1848 return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
1849 },
1850  
1851 // Boolean properties
1852 "enabled": function( elem ) {
1853 return elem.disabled === false;
1854 },
1855  
1856 "disabled": function( elem ) {
1857 return elem.disabled === true;
1858 },
1859  
1860 "checked": function( elem ) {
1861 // In CSS3, :checked should return both checked and selected elements
1862 // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1863 var nodeName = elem.nodeName.toLowerCase();
1864 return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
1865 },
1866  
1867 "selected": function( elem ) {
1868 // Accessing this property makes selected-by-default
1869 // options in Safari work properly
1870 if ( elem.parentNode ) {
1871 elem.parentNode.selectedIndex;
1872 }
1873  
1874 return elem.selected === true;
1875 },
1876  
1877 // Contents
1878 "empty": function( elem ) {
1879 // http://www.w3.org/TR/selectors/#empty-pseudo
1880 // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
1881 // but not by others (comment: 8; processing instruction: 7; etc.)
1882 // nodeType < 6 works because attributes (2) do not appear as children
1883 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1884 if ( elem.nodeType < 6 ) {
1885 return false;
1886 }
1887 }
1888 return true;
1889 },
1890  
1891 "parent": function( elem ) {
1892 return !Expr.pseudos["empty"]( elem );
1893 },
1894  
1895 // Element/input types
1896 "header": function( elem ) {
1897 return rheader.test( elem.nodeName );
1898 },
1899  
1900 "input": function( elem ) {
1901 return rinputs.test( elem.nodeName );
1902 },
1903  
1904 "button": function( elem ) {
1905 var name = elem.nodeName.toLowerCase();
1906 return name === "input" && elem.type === "button" || name === "button";
1907 },
1908  
1909 "text": function( elem ) {
1910 var attr;
1911 return elem.nodeName.toLowerCase() === "input" &&
1912 elem.type === "text" &&
1913  
1914 // Support: IE<8
1915 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
1916 ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
1917 },
1918  
1919 // Position-in-collection
1920 "first": createPositionalPseudo(function() {
1921 return [ 0 ];
1922 }),
1923  
1924 "last": createPositionalPseudo(function( matchIndexes, length ) {
1925 return [ length - 1 ];
1926 }),
1927  
1928 "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
1929 return [ argument < 0 ? argument + length : argument ];
1930 }),
1931  
1932 "even": createPositionalPseudo(function( matchIndexes, length ) {
1933 var i = 0;
1934 for ( ; i < length; i += 2 ) {
1935 matchIndexes.push( i );
1936 }
1937 return matchIndexes;
1938 }),
1939  
1940 "odd": createPositionalPseudo(function( matchIndexes, length ) {
1941 var i = 1;
1942 for ( ; i < length; i += 2 ) {
1943 matchIndexes.push( i );
1944 }
1945 return matchIndexes;
1946 }),
1947  
1948 "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
1949 var i = argument < 0 ? argument + length : argument;
1950 for ( ; --i >= 0; ) {
1951 matchIndexes.push( i );
1952 }
1953 return matchIndexes;
1954 }),
1955  
1956 "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
1957 var i = argument < 0 ? argument + length : argument;
1958 for ( ; ++i < length; ) {
1959 matchIndexes.push( i );
1960 }
1961 return matchIndexes;
1962 })
1963 }
1964 };
1965  
1966 Expr.pseudos["nth"] = Expr.pseudos["eq"];
1967  
1968 // Add button/input type pseudos
1969 for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
1970 Expr.pseudos[ i ] = createInputPseudo( i );
1971 }
1972 for ( i in { submit: true, reset: true } ) {
1973 Expr.pseudos[ i ] = createButtonPseudo( i );
1974 }
1975  
1976 // Easy API for creating new setFilters
1977 function setFilters() {}
1978 setFilters.prototype = Expr.filters = Expr.pseudos;
1979 Expr.setFilters = new setFilters();
1980  
1981 function tokenize( selector, parseOnly ) {
1982 var matched, match, tokens, type,
1983 soFar, groups, preFilters,
1984 cached = tokenCache[ selector + " " ];
1985  
1986 if ( cached ) {
1987 return parseOnly ? 0 : cached.slice( 0 );
1988 }
1989  
1990 soFar = selector;
1991 groups = [];
1992 preFilters = Expr.preFilter;
1993  
1994 while ( soFar ) {
1995  
1996 // Comma and first run
1997 if ( !matched || (match = rcomma.exec( soFar )) ) {
1998 if ( match ) {
1999 // Don't consume trailing commas as valid
2000 soFar = soFar.slice( match[0].length ) || soFar;
2001 }
2002 groups.push( (tokens = []) );
2003 }
2004  
2005 matched = false;
2006  
2007 // Combinators
2008 if ( (match = rcombinators.exec( soFar )) ) {
2009 matched = match.shift();
2010 tokens.push({
2011 value: matched,
2012 // Cast descendant combinators to space
2013 type: match[0].replace( rtrim, " " )
2014 });
2015 soFar = soFar.slice( matched.length );
2016 }
2017  
2018 // Filters
2019 for ( type in Expr.filter ) {
2020 if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
2021 (match = preFilters[ type ]( match ))) ) {
2022 matched = match.shift();
2023 tokens.push({
2024 value: matched,
2025 type: type,
2026 matches: match
2027 });
2028 soFar = soFar.slice( matched.length );
2029 }
2030 }
2031  
2032 if ( !matched ) {
2033 break;
2034 }
2035 }
2036  
2037 // Return the length of the invalid excess
2038 // if we're just parsing
2039 // Otherwise, throw an error or return tokens
2040 return parseOnly ?
2041 soFar.length :
2042 soFar ?
2043 Sizzle.error( selector ) :
2044 // Cache the tokens
2045 tokenCache( selector, groups ).slice( 0 );
2046 }
2047  
2048 function toSelector( tokens ) {
2049 var i = 0,
2050 len = tokens.length,
2051 selector = "";
2052 for ( ; i < len; i++ ) {
2053 selector += tokens[i].value;
2054 }
2055 return selector;
2056 }
2057  
2058 function addCombinator( matcher, combinator, base ) {
2059 var dir = combinator.dir,
2060 checkNonElements = base && dir === "parentNode",
2061 doneName = done++;
2062  
2063 return combinator.first ?
2064 // Check against closest ancestor/preceding element
2065 function( elem, context, xml ) {
2066 while ( (elem = elem[ dir ]) ) {
2067 if ( elem.nodeType === 1 || checkNonElements ) {
2068 return matcher( elem, context, xml );
2069 }
2070 }
2071 } :
2072  
2073 // Check against all ancestor/preceding elements
2074 function( elem, context, xml ) {
2075 var oldCache, outerCache,
2076 newCache = [ dirruns, doneName ];
2077  
2078 // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
2079 if ( xml ) {
2080 while ( (elem = elem[ dir ]) ) {
2081 if ( elem.nodeType === 1 || checkNonElements ) {
2082 if ( matcher( elem, context, xml ) ) {
2083 return true;
2084 }
2085 }
2086 }
2087 } else {
2088 while ( (elem = elem[ dir ]) ) {
2089 if ( elem.nodeType === 1 || checkNonElements ) {
2090 outerCache = elem[ expando ] || (elem[ expando ] = {});
2091 if ( (oldCache = outerCache[ dir ]) &&
2092 oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
2093  
2094 // Assign to newCache so results back-propagate to previous elements
2095 return (newCache[ 2 ] = oldCache[ 2 ]);
2096 } else {
2097 // Reuse newcache so results back-propagate to previous elements
2098 outerCache[ dir ] = newCache;
2099  
2100 // A match means we're done; a fail means we have to keep checking
2101 if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
2102 return true;
2103 }
2104 }
2105 }
2106 }
2107 }
2108 };
2109 }
2110  
2111 function elementMatcher( matchers ) {
2112 return matchers.length > 1 ?
2113 function( elem, context, xml ) {
2114 var i = matchers.length;
2115 while ( i-- ) {
2116 if ( !matchers[i]( elem, context, xml ) ) {
2117 return false;
2118 }
2119 }
2120 return true;
2121 } :
2122 matchers[0];
2123 }
2124  
2125 function condense( unmatched, map, filter, context, xml ) {
2126 var elem,
2127 newUnmatched = [],
2128 i = 0,
2129 len = unmatched.length,
2130 mapped = map != null;
2131  
2132 for ( ; i < len; i++ ) {
2133 if ( (elem = unmatched[i]) ) {
2134 if ( !filter || filter( elem, context, xml ) ) {
2135 newUnmatched.push( elem );
2136 if ( mapped ) {
2137 map.push( i );
2138 }
2139 }
2140 }
2141 }
2142  
2143 return newUnmatched;
2144 }
2145  
2146 function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
2147 if ( postFilter && !postFilter[ expando ] ) {
2148 postFilter = setMatcher( postFilter );
2149 }
2150 if ( postFinder && !postFinder[ expando ] ) {
2151 postFinder = setMatcher( postFinder, postSelector );
2152 }
2153 return markFunction(function( seed, results, context, xml ) {
2154 var temp, i, elem,
2155 preMap = [],
2156 postMap = [],
2157 preexisting = results.length,
2158  
2159 // Get initial elements from seed or context
2160 elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
2161  
2162 // Prefilter to get matcher input, preserving a map for seed-results synchronization
2163 matcherIn = preFilter && ( seed || !selector ) ?
2164 condense( elems, preMap, preFilter, context, xml ) :
2165 elems,
2166  
2167 matcherOut = matcher ?
2168 // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
2169 postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
2170  
2171 // ...intermediate processing is necessary
2172 [] :
2173  
2174 // ...otherwise use results directly
2175 results :
2176 matcherIn;
2177  
2178 // Find primary matches
2179 if ( matcher ) {
2180 matcher( matcherIn, matcherOut, context, xml );
2181 }
2182  
2183 // Apply postFilter
2184 if ( postFilter ) {
2185 temp = condense( matcherOut, postMap );
2186 postFilter( temp, [], context, xml );
2187  
2188 // Un-match failing elements by moving them back to matcherIn
2189 i = temp.length;
2190 while ( i-- ) {
2191 if ( (elem = temp[i]) ) {
2192 matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
2193 }
2194 }
2195 }
2196  
2197 if ( seed ) {
2198 if ( postFinder || preFilter ) {
2199 if ( postFinder ) {
2200 // Get the final matcherOut by condensing this intermediate into postFinder contexts
2201 temp = [];
2202 i = matcherOut.length;
2203 while ( i-- ) {
2204 if ( (elem = matcherOut[i]) ) {
2205 // Restore matcherIn since elem is not yet a final match
2206 temp.push( (matcherIn[i] = elem) );
2207 }
2208 }
2209 postFinder( null, (matcherOut = []), temp, xml );
2210 }
2211  
2212 // Move matched elements from seed to results to keep them synchronized
2213 i = matcherOut.length;
2214 while ( i-- ) {
2215 if ( (elem = matcherOut[i]) &&
2216 (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
2217  
2218 seed[temp] = !(results[temp] = elem);
2219 }
2220 }
2221 }
2222  
2223 // Add elements to results, through postFinder if defined
2224 } else {
2225 matcherOut = condense(
2226 matcherOut === results ?
2227 matcherOut.splice( preexisting, matcherOut.length ) :
2228 matcherOut
2229 );
2230 if ( postFinder ) {
2231 postFinder( null, results, matcherOut, xml );
2232 } else {
2233 push.apply( results, matcherOut );
2234 }
2235 }
2236 });
2237 }
2238  
2239 function matcherFromTokens( tokens ) {
2240 var checkContext, matcher, j,
2241 len = tokens.length,
2242 leadingRelative = Expr.relative[ tokens[0].type ],
2243 implicitRelative = leadingRelative || Expr.relative[" "],
2244 i = leadingRelative ? 1 : 0,
2245  
2246 // The foundational matcher ensures that elements are reachable from top-level context(s)
2247 matchContext = addCombinator( function( elem ) {
2248 return elem === checkContext;
2249 }, implicitRelative, true ),
2250 matchAnyContext = addCombinator( function( elem ) {
2251 return indexOf.call( checkContext, elem ) > -1;
2252 }, implicitRelative, true ),
2253 matchers = [ function( elem, context, xml ) {
2254 return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
2255 (checkContext = context).nodeType ?
2256 matchContext( elem, context, xml ) :
2257 matchAnyContext( elem, context, xml ) );
2258 } ];
2259  
2260 for ( ; i < len; i++ ) {
2261 if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
2262 matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
2263 } else {
2264 matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
2265  
2266 // Return special upon seeing a positional matcher
2267 if ( matcher[ expando ] ) {
2268 // Find the next relative operator (if any) for proper handling
2269 j = ++i;
2270 for ( ; j < len; j++ ) {
2271 if ( Expr.relative[ tokens[j].type ] ) {
2272 break;
2273 }
2274 }
2275 return setMatcher(
2276 i > 1 && elementMatcher( matchers ),
2277 i > 1 && toSelector(
2278 // If the preceding token was a descendant combinator, insert an implicit any-element `*`
2279 tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
2280 ).replace( rtrim, "$1" ),
2281 matcher,
2282 i < j && matcherFromTokens( tokens.slice( i, j ) ),
2283 j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
2284 j < len && toSelector( tokens )
2285 );
2286 }
2287 matchers.push( matcher );
2288 }
2289 }
2290  
2291 return elementMatcher( matchers );
2292 }
2293  
2294 function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
2295 var bySet = setMatchers.length > 0,
2296 byElement = elementMatchers.length > 0,
2297 superMatcher = function( seed, context, xml, results, outermost ) {
2298 var elem, j, matcher,
2299 matchedCount = 0,
2300 i = "0",
2301 unmatched = seed && [],
2302 setMatched = [],
2303 contextBackup = outermostContext,
2304 // We must always have either seed elements or outermost context
2305 elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
2306 // Use integer dirruns iff this is the outermost matcher
2307 dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
2308 len = elems.length;
2309  
2310 if ( outermost ) {
2311 outermostContext = context !== document && context;
2312 }
2313  
2314 // Add elements passing elementMatchers directly to results
2315 // Keep `i` a string if there are no elements so `matchedCount` will be "00" below
2316 // Support: IE<9, Safari
2317 // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
2318 for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
2319 if ( byElement && elem ) {
2320 j = 0;
2321 while ( (matcher = elementMatchers[j++]) ) {
2322 if ( matcher( elem, context, xml ) ) {
2323 results.push( elem );
2324 break;
2325 }
2326 }
2327 if ( outermost ) {
2328 dirruns = dirrunsUnique;
2329 }
2330 }
2331  
2332 // Track unmatched elements for set filters
2333 if ( bySet ) {
2334 // They will have gone through all possible matchers
2335 if ( (elem = !matcher && elem) ) {
2336 matchedCount--;
2337 }
2338  
2339 // Lengthen the array for every element, matched or not
2340 if ( seed ) {
2341 unmatched.push( elem );
2342 }
2343 }
2344 }
2345  
2346 // Apply set filters to unmatched elements
2347 matchedCount += i;
2348 if ( bySet && i !== matchedCount ) {
2349 j = 0;
2350 while ( (matcher = setMatchers[j++]) ) {
2351 matcher( unmatched, setMatched, context, xml );
2352 }
2353  
2354 if ( seed ) {
2355 // Reintegrate element matches to eliminate the need for sorting
2356 if ( matchedCount > 0 ) {
2357 while ( i-- ) {
2358 if ( !(unmatched[i] || setMatched[i]) ) {
2359 setMatched[i] = pop.call( results );
2360 }
2361 }
2362 }
2363  
2364 // Discard index placeholder values to get only actual matches
2365 setMatched = condense( setMatched );
2366 }
2367  
2368 // Add matches to results
2369 push.apply( results, setMatched );
2370  
2371 // Seedless set matches succeeding multiple successful matchers stipulate sorting
2372 if ( outermost && !seed && setMatched.length > 0 &&
2373 ( matchedCount + setMatchers.length ) > 1 ) {
2374  
2375 Sizzle.uniqueSort( results );
2376 }
2377 }
2378  
2379 // Override manipulation of globals by nested matchers
2380 if ( outermost ) {
2381 dirruns = dirrunsUnique;
2382 outermostContext = contextBackup;
2383 }
2384  
2385 return unmatched;
2386 };
2387  
2388 return bySet ?
2389 markFunction( superMatcher ) :
2390 superMatcher;
2391 }
2392  
2393 compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
2394 var i,
2395 setMatchers = [],
2396 elementMatchers = [],
2397 cached = compilerCache[ selector + " " ];
2398  
2399 if ( !cached ) {
2400 // Generate a function of recursive functions that can be used to check each element
2401 if ( !group ) {
2402 group = tokenize( selector );
2403 }
2404 i = group.length;
2405 while ( i-- ) {
2406 cached = matcherFromTokens( group[i] );
2407 if ( cached[ expando ] ) {
2408 setMatchers.push( cached );
2409 } else {
2410 elementMatchers.push( cached );
2411 }
2412 }
2413  
2414 // Cache the compiled function
2415 cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
2416 }
2417 return cached;
2418 };
2419  
2420 function multipleContexts( selector, contexts, results ) {
2421 var i = 0,
2422 len = contexts.length;
2423 for ( ; i < len; i++ ) {
2424 Sizzle( selector, contexts[i], results );
2425 }
2426 return results;
2427 }
2428  
2429 function select( selector, context, results, seed ) {
2430 var i, tokens, token, type, find,
2431 match = tokenize( selector );
2432  
2433 if ( !seed ) {
2434 // Try to minimize operations if there is only one group
2435 if ( match.length === 1 ) {
2436  
2437 // Take a shortcut and set the context if the root selector is an ID
2438 tokens = match[0] = match[0].slice( 0 );
2439 if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
2440 support.getById && context.nodeType === 9 && documentIsHTML &&
2441 Expr.relative[ tokens[1].type ] ) {
2442  
2443 context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
2444 if ( !context ) {
2445 return results;
2446 }
2447 selector = selector.slice( tokens.shift().value.length );
2448 }
2449  
2450 // Fetch a seed set for right-to-left matching
2451 i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
2452 while ( i-- ) {
2453 token = tokens[i];
2454  
2455 // Abort if we hit a combinator
2456 if ( Expr.relative[ (type = token.type) ] ) {
2457 break;
2458 }
2459 if ( (find = Expr.find[ type ]) ) {
2460 // Search, expanding context for leading sibling combinators
2461 if ( (seed = find(
2462 token.matches[0].replace( runescape, funescape ),
2463 rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
2464 )) ) {
2465  
2466 // If seed is empty or no tokens remain, we can return early
2467 tokens.splice( i, 1 );
2468 selector = seed.length && toSelector( tokens );
2469 if ( !selector ) {
2470 push.apply( results, seed );
2471 return results;
2472 }
2473  
2474 break;
2475 }
2476 }
2477 }
2478 }
2479 }
2480  
2481 // Compile and execute a filtering function
2482 // Provide `match` to avoid retokenization if we modified the selector above
2483 compile( selector, match )(
2484 seed,
2485 context,
2486 !documentIsHTML,
2487 results,
2488 rsibling.test( selector ) && testContext( context.parentNode ) || context
2489 );
2490 return results;
2491 }
2492  
2493 // One-time assignments
2494  
2495 // Sort stability
2496 support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
2497  
2498 // Support: Chrome<14
2499 // Always assume duplicates if they aren't passed to the comparison function
2500 support.detectDuplicates = !!hasDuplicate;
2501  
2502 // Initialize against the default document
2503 setDocument();
2504  
2505 // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
2506 // Detached nodes confoundingly follow *each other*
2507 support.sortDetached = assert(function( div1 ) {
2508 // Should return 1, but returns 4 (following)
2509 return div1.compareDocumentPosition( document.createElement("div") ) & 1;
2510 });
2511  
2512 // Support: IE<8
2513 // Prevent attribute/property "interpolation"
2514 // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
2515 if ( !assert(function( div ) {
2516 div.innerHTML = "<a href='#'></a>";
2517 return div.firstChild.getAttribute("href") === "#" ;
2518 }) ) {
2519 addHandle( "type|href|height|width", function( elem, name, isXML ) {
2520 if ( !isXML ) {
2521 return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
2522 }
2523 });
2524 }
2525  
2526 // Support: IE<9
2527 // Use defaultValue in place of getAttribute("value")
2528 if ( !support.attributes || !assert(function( div ) {
2529 div.innerHTML = "<input/>";
2530 div.firstChild.setAttribute( "value", "" );
2531 return div.firstChild.getAttribute( "value" ) === "";
2532 }) ) {
2533 addHandle( "value", function( elem, name, isXML ) {
2534 if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
2535 return elem.defaultValue;
2536 }
2537 });
2538 }
2539  
2540 // Support: IE<9
2541 // Use getAttributeNode to fetch booleans when getAttribute lies
2542 if ( !assert(function( div ) {
2543 return div.getAttribute("disabled") == null;
2544 }) ) {
2545 addHandle( booleans, function( elem, name, isXML ) {
2546 var val;
2547 if ( !isXML ) {
2548 return elem[ name ] === true ? name.toLowerCase() :
2549 (val = elem.getAttributeNode( name )) && val.specified ?
2550 val.value :
2551 null;
2552 }
2553 });
2554 }
2555  
2556 return Sizzle;
2557  
2558 })( window );
2559  
2560  
2561  
2562 jQuery.find = Sizzle;
2563 jQuery.expr = Sizzle.selectors;
2564 jQuery.expr[":"] = jQuery.expr.pseudos;
2565 jQuery.unique = Sizzle.uniqueSort;
2566 jQuery.text = Sizzle.getText;
2567 jQuery.isXMLDoc = Sizzle.isXML;
2568 jQuery.contains = Sizzle.contains;
2569  
2570  
2571  
2572 var rneedsContext = jQuery.expr.match.needsContext;
2573  
2574 var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
2575  
2576  
2577  
2578 <(\w+)\s*\/?><\/\1>var risSimple = /^.[^:#\[\.,]*$/;
2579  
2580 <(\w+)\s*\/?><\/\1>// Implement the identical functionality for filter and not
2581 <(\w+)\s*\/?><\/\1>function winnow( elements, qualifier, not ) {
2582 <(\w+)\s*\/?><\/\1> if ( jQuery.isFunction( qualifier ) ) {
2583 <(\w+)\s*\/?><\/\1> return jQuery.grep( elements, function( elem, i ) {
2584 <(\w+)\s*\/?><\/\1> /* jshint -W018 */
2585 <(\w+)\s*\/?><\/\1> return !!qualifier.call( elem, i, elem ) !== not;
2586 <(\w+)\s*\/?><\/\1> });
2587  
2588 <(\w+)\s*\/?><\/\1> }
2589  
2590 <(\w+)\s*\/?><\/\1> if ( qualifier.nodeType ) {
2591 <(\w+)\s*\/?><\/\1> return jQuery.grep( elements, function( elem ) {
2592 <(\w+)\s*\/?><\/\1> return ( elem === qualifier ) !== not;
2593 <(\w+)\s*\/?><\/\1> });
2594  
2595 <(\w+)\s*\/?><\/\1> }
2596  
2597 <(\w+)\s*\/?><\/\1> if ( typeof qualifier === "string" ) {
2598 <(\w+)\s*\/?><\/\1> if ( risSimple.test( qualifier ) ) {
2599 <(\w+)\s*\/?><\/\1> return jQuery.filter( qualifier, elements, not );
2600 <(\w+)\s*\/?><\/\1> }
2601  
2602 <(\w+)\s*\/?><\/\1> qualifier = jQuery.filter( qualifier, elements );
2603 <(\w+)\s*\/?><\/\1> }
2604  
2605 <(\w+)\s*\/?><\/\1> return jQuery.grep( elements, function( elem ) {
2606 <(\w+)\s*\/?><\/\1> return ( indexOf.call( qualifier, elem ) >= 0 ) !== not;
2607 <(\w+)\s*\/?><\/\1> });
2608 <(\w+)\s*\/?><\/\1>}
2609  
2610 <(\w+)\s*\/?><\/\1>jQuery.filter = function( expr, elems, not ) {
2611 <(\w+)\s*\/?><\/\1> var elem = elems[ 0 ];
2612  
2613 <(\w+)\s*\/?><\/\1> if ( not ) {
2614 <(\w+)\s*\/?><\/\1> expr = ":not(" + expr + ")";
2615 <(\w+)\s*\/?><\/\1> }
2616  
2617 <(\w+)\s*\/?><\/\1> return elems.length === 1 && elem.nodeType === 1 ?
2618 <(\w+)\s*\/?><\/\1> jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
2619 <(\w+)\s*\/?><\/\1> jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
2620 <(\w+)\s*\/?><\/\1> return elem.nodeType === 1;
2621 <(\w+)\s*\/?><\/\1> }));
2622 <(\w+)\s*\/?><\/\1>};
2623  
2624 <(\w+)\s*\/?><\/\1>jQuery.fn.extend({
2625 <(\w+)\s*\/?><\/\1> find: function( selector ) {
2626 <(\w+)\s*\/?><\/\1> var i,
2627 <(\w+)\s*\/?><\/\1> len = this.length,
2628 <(\w+)\s*\/?><\/\1> ret = [],
2629 <(\w+)\s*\/?><\/\1> self = this;
2630  
2631 <(\w+)\s*\/?><\/\1> if ( typeof selector !== "string" ) {
2632 <(\w+)\s*\/?><\/\1> return this.pushStack( jQuery( selector ).filter(function() {
2633 <(\w+)\s*\/?><\/\1> for ( i = 0; i < len; i++ ) {
2634 <(\w+)\s*\/?><\/\1> if ( jQuery.contains( self[ i ], this ) ) {
2635 <(\w+)\s*\/?><\/\1> return true;
2636 <(\w+)\s*\/?><\/\1> }
2637 <(\w+)\s*\/?><\/\1> }
2638 <(\w+)\s*\/?><\/\1> }) );
2639 <(\w+)\s*\/?><\/\1> }
2640  
2641 <(\w+)\s*\/?><\/\1> for ( i = 0; i < len; i++ ) {
2642 <(\w+)\s*\/?><\/\1> jQuery.find( selector, self[ i ], ret );
2643 <(\w+)\s*\/?><\/\1> }
2644  
2645 <(\w+)\s*\/?><\/\1> // Needed because $( selector, context ) becomes $( context ).find( selector )
2646 <(\w+)\s*\/?><\/\1> ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
2647 <(\w+)\s*\/?><\/\1> ret.selector = this.selector ? this.selector + " " + selector : selector;
2648 <(\w+)\s*\/?><\/\1> return ret;
2649 <(\w+)\s*\/?><\/\1> },
2650 <(\w+)\s*\/?><\/\1> filter: function( selector ) {
2651 <(\w+)\s*\/?><\/\1> return this.pushStack( winnow(this, selector || [], false) );
2652 <(\w+)\s*\/?><\/\1> },
2653 <(\w+)\s*\/?><\/\1> not: function( selector ) {
2654 <(\w+)\s*\/?><\/\1> return this.pushStack( winnow(this, selector || [], true) );
2655 <(\w+)\s*\/?><\/\1> },
2656 <(\w+)\s*\/?><\/\1> is: function( selector ) {
2657 <(\w+)\s*\/?><\/\1> return !!winnow(
2658 <(\w+)\s*\/?><\/\1> this,
2659  
2660 <(\w+)\s*\/?><\/\1> // If this is a positional/relative selector, check membership in the returned set
2661 <(\w+)\s*\/?><\/\1> // so $("p:first").is("p:last") won't return true for a doc with two "p".
2662 <(\w+)\s*\/?><\/\1> typeof selector === "string" && rneedsContext.test( selector ) ?
2663 <(\w+)\s*\/?><\/\1> jQuery( selector ) :
2664 <(\w+)\s*\/?><\/\1> selector || [],
2665 <(\w+)\s*\/?><\/\1> false
2666 <(\w+)\s*\/?><\/\1> ).length;
2667 <(\w+)\s*\/?><\/\1> }
2668 <(\w+)\s*\/?><\/\1>});
2669  
2670  
2671 <(\w+)\s*\/?><\/\1>// Initialize a jQuery object
2672  
2673  
2674 <(\w+)\s*\/?><\/\1>// A central reference to the root jQuery(document)
2675 <(\w+)\s*\/?><\/\1>var rootjQuery,
2676  
2677 <(\w+)\s*\/?><\/\1> // A simple way to check for HTML strings
2678 <(\w+)\s*\/?><\/\1> // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
2679 <(\w+)\s*\/?><\/\1> // Strict HTML recognition (#11290: must start with <)
2680 <(\w+)\s*\/?><\/\1> rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
2681  
2682 <(\w+)\s*\/?><\/\1><[\w\W]+> init = jQuery.fn.init = function( selector, context ) {
2683 <(\w+)\s*\/?><\/\1><[\w\W]+> var match, elem;
2684  
2685 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(""), $(null), $(undefined), $(false)
2686 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !selector ) {
2687 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2688 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2689  
2690 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle HTML strings
2691 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof selector === "string" ) {
2692 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) {
2693 <(\w+)\s*\/?><\/\1><[\w\W]+> // Assume that strings that start and end with <> are HTML and skip the regex check
2694 <(\w+)\s*\/?><\/\1><[\w\W]+> match = [ null, selector, null ];
2695  
2696 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2697 <(\w+)\s*\/?><\/\1><[\w\W]+> match = rquickExpr.exec( selector );
2698 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2699  
2700 <(\w+)\s*\/?><\/\1><[\w\W]+> // Match html or make sure no context is specified for #id
2701 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( match && (match[1] || !context) ) {
2702  
2703 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(html) -> $(array)
2704 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( match[1] ) {
2705 <(\w+)\s*\/?><\/\1><[\w\W]+> context = context instanceof jQuery ? context[0] : context;
2706  
2707 <(\w+)\s*\/?><\/\1><[\w\W]+> // scripts is true for back-compat
2708 <(\w+)\s*\/?><\/\1><[\w\W]+> // Intentionally let the error be thrown if parseHTML is not present
2709 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.merge( this, jQuery.parseHTML(
2710 <(\w+)\s*\/?><\/\1><[\w\W]+> match[1],
2711 <(\w+)\s*\/?><\/\1><[\w\W]+> context && context.nodeType ? context.ownerDocument || context : document,
2712 <(\w+)\s*\/?><\/\1><[\w\W]+> true
2713 <(\w+)\s*\/?><\/\1><[\w\W]+> ) );
2714  
2715 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(html, props)
2716 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
2717 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( match in context ) {
2718 <(\w+)\s*\/?><\/\1><[\w\W]+> // Properties of context are called as methods if possible
2719 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isFunction( this[ match ] ) ) {
2720 <(\w+)\s*\/?><\/\1><[\w\W]+> this[ match ]( context[ match ] );
2721  
2722 <(\w+)\s*\/?><\/\1><[\w\W]+> // ...and otherwise set as attributes
2723 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2724 <(\w+)\s*\/?><\/\1><[\w\W]+> this.attr( match, context[ match ] );
2725 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2726 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2727 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2728  
2729 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2730  
2731 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(#id)
2732 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2733 <(\w+)\s*\/?><\/\1><[\w\W]+> elem = document.getElementById( match[2] );
2734  
2735 <(\w+)\s*\/?><\/\1><[\w\W]+> // Check parentNode to catch when Blackberry 4.6 returns
2736 <(\w+)\s*\/?><\/\1><[\w\W]+> // nodes that are no longer in the document #6963
2737 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem && elem.parentNode ) {
2738 <(\w+)\s*\/?><\/\1><[\w\W]+> // Inject the element directly into the jQuery object
2739 <(\w+)\s*\/?><\/\1><[\w\W]+> this.length = 1;
2740 <(\w+)\s*\/?><\/\1><[\w\W]+> this[0] = elem;
2741 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2742  
2743 <(\w+)\s*\/?><\/\1><[\w\W]+> this.context = document;
2744 <(\w+)\s*\/?><\/\1><[\w\W]+> this.selector = selector;
2745 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2746 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2747  
2748 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(expr, $(...))
2749 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( !context || context.jquery ) {
2750 <(\w+)\s*\/?><\/\1><[\w\W]+> return ( context || rootjQuery ).find( selector );
2751  
2752 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(expr, context)
2753 <(\w+)\s*\/?><\/\1><[\w\W]+> // (which is just equivalent to: $(context).find(expr)
2754 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
2755 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.constructor( context ).find( selector );
2756 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2757  
2758 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(DOMElement)
2759 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( selector.nodeType ) {
2760 <(\w+)\s*\/?><\/\1><[\w\W]+> this.context = this[0] = selector;
2761 <(\w+)\s*\/?><\/\1><[\w\W]+> this.length = 1;
2762 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
2763  
2764 <(\w+)\s*\/?><\/\1><[\w\W]+> // HANDLE: $(function)
2765 <(\w+)\s*\/?><\/\1><[\w\W]+> // Shortcut for document ready
2766 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( jQuery.isFunction( selector ) ) {
2767 <(\w+)\s*\/?><\/\1><[\w\W]+> return typeof rootjQuery.ready !== "undefined" ?
2768 <(\w+)\s*\/?><\/\1><[\w\W]+> rootjQuery.ready( selector ) :
2769 <(\w+)\s*\/?><\/\1><[\w\W]+> // Execute immediately if ready is not present
2770 <(\w+)\s*\/?><\/\1><[\w\W]+> selector( jQuery );
2771 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2772  
2773 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector.selector !== undefined ) {
2774 <(\w+)\s*\/?><\/\1><[\w\W]+> this.selector = selector.selector;
2775 <(\w+)\s*\/?><\/\1><[\w\W]+> this.context = selector.context;
2776 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2777  
2778 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.makeArray( selector, this );
2779 <(\w+)\s*\/?><\/\1><[\w\W]+> };
2780  
2781 <(\w+)\s*\/?><\/\1><[\w\W]+>// Give the init function the jQuery prototype for later instantiation
2782 <(\w+)\s*\/?><\/\1><[\w\W]+>init.prototype = jQuery.fn;
2783  
2784 <(\w+)\s*\/?><\/\1><[\w\W]+>// Initialize central reference
2785 <(\w+)\s*\/?><\/\1><[\w\W]+>rootjQuery = jQuery( document );
2786  
2787  
2788 <(\w+)\s*\/?><\/\1><[\w\W]+>var rparentsprev = /^(?:parents|prev(?:Until|All))/,
2789 <(\w+)\s*\/?><\/\1><[\w\W]+> // methods guaranteed to produce a unique set when starting from a unique set
2790 <(\w+)\s*\/?><\/\1><[\w\W]+> guaranteedUnique = {
2791 <(\w+)\s*\/?><\/\1><[\w\W]+> children: true,
2792 <(\w+)\s*\/?><\/\1><[\w\W]+> contents: true,
2793 <(\w+)\s*\/?><\/\1><[\w\W]+> next: true,
2794 <(\w+)\s*\/?><\/\1><[\w\W]+> prev: true
2795 <(\w+)\s*\/?><\/\1><[\w\W]+> };
2796  
2797 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
2798 <(\w+)\s*\/?><\/\1><[\w\W]+> dir: function( elem, dir, until ) {
2799 <(\w+)\s*\/?><\/\1><[\w\W]+> var matched = [],
2800 <(\w+)\s*\/?><\/\1><[\w\W]+> truncate = until !== undefined;
2801  
2802 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) {
2803 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.nodeType === 1 ) {
2804 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( truncate && jQuery( elem ).is( until ) ) {
2805 <(\w+)\s*\/?><\/\1><[\w\W]+> break;
2806 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2807 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.push( elem );
2808 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2809 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2810 <(\w+)\s*\/?><\/\1><[\w\W]+> return matched;
2811 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2812  
2813 <(\w+)\s*\/?><\/\1><[\w\W]+> sibling: function( n, elem ) {
2814 <(\w+)\s*\/?><\/\1><[\w\W]+> var matched = [];
2815  
2816 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; n; n = n.nextSibling ) {
2817 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( n.nodeType === 1 && n !== elem ) {
2818 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.push( n );
2819 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2820 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2821  
2822 <(\w+)\s*\/?><\/\1><[\w\W]+> return matched;
2823 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2824 <(\w+)\s*\/?><\/\1><[\w\W]+>});
2825  
2826 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
2827 <(\w+)\s*\/?><\/\1><[\w\W]+> has: function( target ) {
2828 <(\w+)\s*\/?><\/\1><[\w\W]+> var targets = jQuery( target, this ),
2829 <(\w+)\s*\/?><\/\1><[\w\W]+> l = targets.length;
2830  
2831 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.filter(function() {
2832 <(\w+)\s*\/?><\/\1><[\w\W]+> var i = 0;
2833 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < l; i++ ) {
2834 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.contains( this, targets[i] ) ) {
2835 <(\w+)\s*\/?><\/\1><[\w\W]+> return true;
2836 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2837 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2838 <(\w+)\s*\/?><\/\1><[\w\W]+> });
2839 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2840  
2841 <(\w+)\s*\/?><\/\1><[\w\W]+> closest: function( selectors, context ) {
2842 <(\w+)\s*\/?><\/\1><[\w\W]+> var cur,
2843 <(\w+)\s*\/?><\/\1><[\w\W]+> i = 0,
2844 <(\w+)\s*\/?><\/\1><[\w\W]+> l = this.length,
2845 <(\w+)\s*\/?><\/\1><[\w\W]+> matched = [],
2846 <(\w+)\s*\/?><\/\1><[\w\W]+> pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
2847 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( selectors, context || this.context ) :
2848 <(\w+)\s*\/?><\/\1><[\w\W]+> 0;
2849  
2850 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < l; i++ ) {
2851 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
2852 <(\w+)\s*\/?><\/\1><[\w\W]+> // Always skip document fragments
2853 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( cur.nodeType < 11 && (pos ?
2854 <(\w+)\s*\/?><\/\1><[\w\W]+> pos.index(cur) > -1 :
2855  
2856 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't pass non-elements to Sizzle
2857 <(\w+)\s*\/?><\/\1><[\w\W]+> cur.nodeType === 1 &&
2858 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.find.matchesSelector(cur, selectors)) ) {
2859  
2860 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.push( cur );
2861 <(\w+)\s*\/?><\/\1><[\w\W]+> break;
2862 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2863 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2864 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2865  
2866 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
2867 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2868  
2869 <(\w+)\s*\/?><\/\1><[\w\W]+> // Determine the position of an element within
2870 <(\w+)\s*\/?><\/\1><[\w\W]+> // the matched set of elements
2871 <(\w+)\s*\/?><\/\1><[\w\W]+> index: function( elem ) {
2872  
2873 <(\w+)\s*\/?><\/\1><[\w\W]+> // No argument, return index in parent
2874 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !elem ) {
2875 <(\w+)\s*\/?><\/\1><[\w\W]+> return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
2876 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2877  
2878 <(\w+)\s*\/?><\/\1><[\w\W]+> // index in selector
2879 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof elem === "string" ) {
2880 <(\w+)\s*\/?><\/\1><[\w\W]+> return indexOf.call( jQuery( elem ), this[ 0 ] );
2881 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2882  
2883 <(\w+)\s*\/?><\/\1><[\w\W]+> // Locate the position of the desired element
2884 <(\w+)\s*\/?><\/\1><[\w\W]+> return indexOf.call( this,
2885  
2886 <(\w+)\s*\/?><\/\1><[\w\W]+> // If it receives a jQuery object, the first element is used
2887 <(\w+)\s*\/?><\/\1><[\w\W]+> elem.jquery ? elem[ 0 ] : elem
2888 <(\w+)\s*\/?><\/\1><[\w\W]+> );
2889 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2890  
2891 <(\w+)\s*\/?><\/\1><[\w\W]+> add: function( selector, context ) {
2892 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.pushStack(
2893 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.unique(
2894 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.merge( this.get(), jQuery( selector, context ) )
2895 <(\w+)\s*\/?><\/\1><[\w\W]+> )
2896 <(\w+)\s*\/?><\/\1><[\w\W]+> );
2897 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2898  
2899 <(\w+)\s*\/?><\/\1><[\w\W]+> addBack: function( selector ) {
2900 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.add( selector == null ?
2901 <(\w+)\s*\/?><\/\1><[\w\W]+> this.prevObject : this.prevObject.filter(selector)
2902 <(\w+)\s*\/?><\/\1><[\w\W]+> );
2903 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2904 <(\w+)\s*\/?><\/\1><[\w\W]+>});
2905  
2906 <(\w+)\s*\/?><\/\1><[\w\W]+>function sibling( cur, dir ) {
2907 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {}
2908 <(\w+)\s*\/?><\/\1><[\w\W]+> return cur;
2909 <(\w+)\s*\/?><\/\1><[\w\W]+>}
2910  
2911 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.each({
2912 <(\w+)\s*\/?><\/\1><[\w\W]+> parent: function( elem ) {
2913 <(\w+)\s*\/?><\/\1><[\w\W]+> var parent = elem.parentNode;
2914 <(\w+)\s*\/?><\/\1><[\w\W]+> return parent && parent.nodeType !== 11 ? parent : null;
2915 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2916 <(\w+)\s*\/?><\/\1><[\w\W]+> parents: function( elem ) {
2917 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "parentNode" );
2918 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2919 <(\w+)\s*\/?><\/\1><[\w\W]+> parentsUntil: function( elem, i, until ) {
2920 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "parentNode", until );
2921 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2922 <(\w+)\s*\/?><\/\1><[\w\W]+> next: function( elem ) {
2923 <(\w+)\s*\/?><\/\1><[\w\W]+> return sibling( elem, "nextSibling" );
2924 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2925 <(\w+)\s*\/?><\/\1><[\w\W]+> prev: function( elem ) {
2926 <(\w+)\s*\/?><\/\1><[\w\W]+> return sibling( elem, "previousSibling" );
2927 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2928 <(\w+)\s*\/?><\/\1><[\w\W]+> nextAll: function( elem ) {
2929 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "nextSibling" );
2930 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2931 <(\w+)\s*\/?><\/\1><[\w\W]+> prevAll: function( elem ) {
2932 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "previousSibling" );
2933 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2934 <(\w+)\s*\/?><\/\1><[\w\W]+> nextUntil: function( elem, i, until ) {
2935 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "nextSibling", until );
2936 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2937 <(\w+)\s*\/?><\/\1><[\w\W]+> prevUntil: function( elem, i, until ) {
2938 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.dir( elem, "previousSibling", until );
2939 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2940 <(\w+)\s*\/?><\/\1><[\w\W]+> siblings: function( elem ) {
2941 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
2942 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2943 <(\w+)\s*\/?><\/\1><[\w\W]+> children: function( elem ) {
2944 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.sibling( elem.firstChild );
2945 <(\w+)\s*\/?><\/\1><[\w\W]+> },
2946 <(\w+)\s*\/?><\/\1><[\w\W]+> contents: function( elem ) {
2947 <(\w+)\s*\/?><\/\1><[\w\W]+> return elem.contentDocument || jQuery.merge( [], elem.childNodes );
2948 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2949 <(\w+)\s*\/?><\/\1><[\w\W]+>}, function( name, fn ) {
2950 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.fn[ name ] = function( until, selector ) {
2951 <(\w+)\s*\/?><\/\1><[\w\W]+> var matched = jQuery.map( this, fn, until );
2952  
2953 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( name.slice( -5 ) !== "Until" ) {
2954 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = until;
2955 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2956  
2957 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector && typeof selector === "string" ) {
2958 <(\w+)\s*\/?><\/\1><[\w\W]+> matched = jQuery.filter( selector, matched );
2959 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2960  
2961 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this.length > 1 ) {
2962 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove duplicates
2963 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !guaranteedUnique[ name ] ) {
2964 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.unique( matched );
2965 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2966  
2967 <(\w+)\s*\/?><\/\1><[\w\W]+> // Reverse order for parents* and prev-derivatives
2968 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( rparentsprev.test( name ) ) {
2969 <(\w+)\s*\/?><\/\1><[\w\W]+> matched.reverse();
2970 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2971 <(\w+)\s*\/?><\/\1><[\w\W]+> }
2972  
2973 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.pushStack( matched );
2974 <(\w+)\s*\/?><\/\1><[\w\W]+> };
2975 <(\w+)\s*\/?><\/\1><[\w\W]+>});
2976 <(\w+)\s*\/?><\/\1><[\w\W]+>var rnotwhite = (/\S+/g);
2977  
2978  
2979  
2980 <(\w+)\s*\/?><\/\1><[\w\W]+>// String to Object options format cache
2981 <(\w+)\s*\/?><\/\1><[\w\W]+>var optionsCache = {};
2982  
2983 <(\w+)\s*\/?><\/\1><[\w\W]+>// Convert String-formatted options into Object-formatted ones and store in cache
2984 <(\w+)\s*\/?><\/\1><[\w\W]+>function createOptions( options ) {
2985 <(\w+)\s*\/?><\/\1><[\w\W]+> var object = optionsCache[ options ] = {};
2986 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
2987 <(\w+)\s*\/?><\/\1><[\w\W]+> object[ flag ] = true;
2988 <(\w+)\s*\/?><\/\1><[\w\W]+> });
2989 <(\w+)\s*\/?><\/\1><[\w\W]+> return object;
2990 <(\w+)\s*\/?><\/\1><[\w\W]+>}
2991  
2992 <(\w+)\s*\/?><\/\1><[\w\W]+>/*
2993 <(\w+)\s*\/?><\/\1><[\w\W]+> * Create a callback list using the following parameters:
2994 <(\w+)\s*\/?><\/\1><[\w\W]+> *
2995 <(\w+)\s*\/?><\/\1><[\w\W]+> * options: an optional list of space-separated options that will change how
2996 <(\w+)\s*\/?><\/\1><[\w\W]+> * the callback list behaves or a more traditional option object
2997 <(\w+)\s*\/?><\/\1><[\w\W]+> *
2998 <(\w+)\s*\/?><\/\1><[\w\W]+> * By default a callback list will act like an event callback list and can be
2999 <(\w+)\s*\/?><\/\1><[\w\W]+> * "fired" multiple times.
3000 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3001 <(\w+)\s*\/?><\/\1><[\w\W]+> * Possible options:
3002 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3003 <(\w+)\s*\/?><\/\1><[\w\W]+> * once: will ensure the callback list can only be fired once (like a Deferred)
3004 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3005 <(\w+)\s*\/?><\/\1><[\w\W]+> * memory: will keep track of previous values and will call any callback added
3006 <(\w+)\s*\/?><\/\1><[\w\W]+> * after the list has been fired right away with the latest "memorized"
3007 <(\w+)\s*\/?><\/\1><[\w\W]+> * values (like a Deferred)
3008 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3009 <(\w+)\s*\/?><\/\1><[\w\W]+> * unique: will ensure a callback can only be added once (no duplicate in the list)
3010 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3011 <(\w+)\s*\/?><\/\1><[\w\W]+> * stopOnFalse: interrupt callings when a callback returns false
3012 <(\w+)\s*\/?><\/\1><[\w\W]+> *
3013 <(\w+)\s*\/?><\/\1><[\w\W]+> */
3014 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.Callbacks = function( options ) {
3015  
3016 <(\w+)\s*\/?><\/\1><[\w\W]+> // Convert options from String-formatted to Object-formatted if needed
3017 <(\w+)\s*\/?><\/\1><[\w\W]+> // (we check in cache first)
3018 <(\w+)\s*\/?><\/\1><[\w\W]+> options = typeof options === "string" ?
3019 <(\w+)\s*\/?><\/\1><[\w\W]+> ( optionsCache[ options ] || createOptions( options ) ) :
3020 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( {}, options );
3021  
3022 <(\w+)\s*\/?><\/\1><[\w\W]+> var // Last fire value (for non-forgettable lists)
3023 <(\w+)\s*\/?><\/\1><[\w\W]+> memory,
3024 <(\w+)\s*\/?><\/\1><[\w\W]+> // Flag to know if list was already fired
3025 <(\w+)\s*\/?><\/\1><[\w\W]+> fired,
3026 <(\w+)\s*\/?><\/\1><[\w\W]+> // Flag to know if list is currently firing
3027 <(\w+)\s*\/?><\/\1><[\w\W]+> firing,
3028 <(\w+)\s*\/?><\/\1><[\w\W]+> // First callback to fire (used internally by add and fireWith)
3029 <(\w+)\s*\/?><\/\1><[\w\W]+> firingStart,
3030 <(\w+)\s*\/?><\/\1><[\w\W]+> // End of the loop when firing
3031 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength,
3032 <(\w+)\s*\/?><\/\1><[\w\W]+> // Index of currently firing callback (modified by remove if needed)
3033 <(\w+)\s*\/?><\/\1><[\w\W]+> firingIndex,
3034 <(\w+)\s*\/?><\/\1><[\w\W]+> // Actual callback list
3035 <(\w+)\s*\/?><\/\1><[\w\W]+> list = [],
3036 <(\w+)\s*\/?><\/\1><[\w\W]+> // Stack of fire calls for repeatable lists
3037 <(\w+)\s*\/?><\/\1><[\w\W]+> stack = !options.once && [],
3038 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fire callbacks
3039 <(\w+)\s*\/?><\/\1><[\w\W]+> fire = function( data ) {
3040 <(\w+)\s*\/?><\/\1><[\w\W]+> memory = options.memory && data;
3041 <(\w+)\s*\/?><\/\1><[\w\W]+> fired = true;
3042 <(\w+)\s*\/?><\/\1><[\w\W]+> firingIndex = firingStart || 0;
3043 <(\w+)\s*\/?><\/\1><[\w\W]+> firingStart = 0;
3044 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength = list.length;
3045 <(\w+)\s*\/?><\/\1><[\w\W]+> firing = true;
3046 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; list && firingIndex < firingLength; firingIndex++ ) {
3047 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
3048 <(\w+)\s*\/?><\/\1><[\w\W]+> memory = false; // To prevent further calls using add
3049 <(\w+)\s*\/?><\/\1><[\w\W]+> break;
3050 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3051 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3052 <(\w+)\s*\/?><\/\1><[\w\W]+> firing = false;
3053 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list ) {
3054 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( stack ) {
3055 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( stack.length ) {
3056 <(\w+)\s*\/?><\/\1><[\w\W]+> fire( stack.shift() );
3057 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3058 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( memory ) {
3059 <(\w+)\s*\/?><\/\1><[\w\W]+> list = [];
3060 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3061 <(\w+)\s*\/?><\/\1><[\w\W]+> self.disable();
3062 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3063 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3064 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3065 <(\w+)\s*\/?><\/\1><[\w\W]+> // Actual Callbacks object
3066 <(\w+)\s*\/?><\/\1><[\w\W]+> self = {
3067 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add a callback or a collection of callbacks to the list
3068 <(\w+)\s*\/?><\/\1><[\w\W]+> add: function() {
3069 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list ) {
3070 <(\w+)\s*\/?><\/\1><[\w\W]+> // First, we save the current length
3071 <(\w+)\s*\/?><\/\1><[\w\W]+> var start = list.length;
3072 <(\w+)\s*\/?><\/\1><[\w\W]+> (function add( args ) {
3073 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( args, function( _, arg ) {
3074 <(\w+)\s*\/?><\/\1><[\w\W]+> var type = jQuery.type( arg );
3075 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type === "function" ) {
3076 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !options.unique || !self.has( arg ) ) {
3077 <(\w+)\s*\/?><\/\1><[\w\W]+> list.push( arg );
3078 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3079 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( arg && arg.length && type !== "string" ) {
3080 <(\w+)\s*\/?><\/\1><[\w\W]+> // Inspect recursively
3081 <(\w+)\s*\/?><\/\1><[\w\W]+> add( arg );
3082 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3083 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3084 <(\w+)\s*\/?><\/\1><[\w\W]+> })( arguments );
3085 <(\w+)\s*\/?><\/\1><[\w\W]+> // Do we need to add the callbacks to the
3086 <(\w+)\s*\/?><\/\1><[\w\W]+> // current firing batch?
3087 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( firing ) {
3088 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength = list.length;
3089 <(\w+)\s*\/?><\/\1><[\w\W]+> // With memory, if we're not firing then
3090 <(\w+)\s*\/?><\/\1><[\w\W]+> // we should call right away
3091 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( memory ) {
3092 <(\w+)\s*\/?><\/\1><[\w\W]+> firingStart = start;
3093 <(\w+)\s*\/?><\/\1><[\w\W]+> fire( memory );
3094 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3095 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3096 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3097 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3098 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove a callback from the list
3099 <(\w+)\s*\/?><\/\1><[\w\W]+> remove: function() {
3100 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list ) {
3101 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( arguments, function( _, arg ) {
3102 <(\w+)\s*\/?><\/\1><[\w\W]+> var index;
3103 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
3104 <(\w+)\s*\/?><\/\1><[\w\W]+> list.splice( index, 1 );
3105 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle firing indexes
3106 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( firing ) {
3107 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( index <= firingLength ) {
3108 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength--;
3109 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3110 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( index <= firingIndex ) {
3111 <(\w+)\s*\/?><\/\1><[\w\W]+> firingIndex--;
3112 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3113 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3114 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3115 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3116 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3117 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3118 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3119 <(\w+)\s*\/?><\/\1><[\w\W]+> // Check if a given callback is in the list.
3120 <(\w+)\s*\/?><\/\1><[\w\W]+> // If no argument is given, return whether or not list has callbacks attached.
3121 <(\w+)\s*\/?><\/\1><[\w\W]+> has: function( fn ) {
3122 <(\w+)\s*\/?><\/\1><[\w\W]+> return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
3123 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3124 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove all callbacks from the list
3125 <(\w+)\s*\/?><\/\1><[\w\W]+> empty: function() {
3126 <(\w+)\s*\/?><\/\1><[\w\W]+> list = [];
3127 <(\w+)\s*\/?><\/\1><[\w\W]+> firingLength = 0;
3128 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3129 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3130 <(\w+)\s*\/?><\/\1><[\w\W]+> // Have the list do nothing anymore
3131 <(\w+)\s*\/?><\/\1><[\w\W]+> disable: function() {
3132 <(\w+)\s*\/?><\/\1><[\w\W]+> list = stack = memory = undefined;
3133 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3134 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3135 <(\w+)\s*\/?><\/\1><[\w\W]+> // Is it disabled?
3136 <(\w+)\s*\/?><\/\1><[\w\W]+> disabled: function() {
3137 <(\w+)\s*\/?><\/\1><[\w\W]+> return !list;
3138 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3139 <(\w+)\s*\/?><\/\1><[\w\W]+> // Lock the list in its current state
3140 <(\w+)\s*\/?><\/\1><[\w\W]+> lock: function() {
3141 <(\w+)\s*\/?><\/\1><[\w\W]+> stack = undefined;
3142 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !memory ) {
3143 <(\w+)\s*\/?><\/\1><[\w\W]+> self.disable();
3144 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3145 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3146 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3147 <(\w+)\s*\/?><\/\1><[\w\W]+> // Is it locked?
3148 <(\w+)\s*\/?><\/\1><[\w\W]+> locked: function() {
3149 <(\w+)\s*\/?><\/\1><[\w\W]+> return !stack;
3150 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3151 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call all callbacks with the given context and arguments
3152 <(\w+)\s*\/?><\/\1><[\w\W]+> fireWith: function( context, args ) {
3153 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( list && ( !fired || stack ) ) {
3154 <(\w+)\s*\/?><\/\1><[\w\W]+> args = args || [];
3155 <(\w+)\s*\/?><\/\1><[\w\W]+> args = [ context, args.slice ? args.slice() : args ];
3156 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( firing ) {
3157 <(\w+)\s*\/?><\/\1><[\w\W]+> stack.push( args );
3158 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3159 <(\w+)\s*\/?><\/\1><[\w\W]+> fire( args );
3160 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3161 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3162 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3163 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3164 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call all the callbacks with the given arguments
3165 <(\w+)\s*\/?><\/\1><[\w\W]+> fire: function() {
3166 <(\w+)\s*\/?><\/\1><[\w\W]+> self.fireWith( this, arguments );
3167 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3168 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3169 <(\w+)\s*\/?><\/\1><[\w\W]+> // To know if the callbacks have already been called at least once
3170 <(\w+)\s*\/?><\/\1><[\w\W]+> fired: function() {
3171 <(\w+)\s*\/?><\/\1><[\w\W]+> return !!fired;
3172 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3173 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3174  
3175 <(\w+)\s*\/?><\/\1><[\w\W]+> return self;
3176 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3177  
3178  
3179 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3180  
3181 <(\w+)\s*\/?><\/\1><[\w\W]+> Deferred: function( func ) {
3182 <(\w+)\s*\/?><\/\1><[\w\W]+> var tuples = [
3183 <(\w+)\s*\/?><\/\1><[\w\W]+> // action, add listener, listener list, final state
3184 <(\w+)\s*\/?><\/\1><[\w\W]+> [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
3185 <(\w+)\s*\/?><\/\1><[\w\W]+> [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
3186 <(\w+)\s*\/?><\/\1><[\w\W]+> [ "notify", "progress", jQuery.Callbacks("memory") ]
3187 <(\w+)\s*\/?><\/\1><[\w\W]+> ],
3188 <(\w+)\s*\/?><\/\1><[\w\W]+> state = "pending",
3189 <(\w+)\s*\/?><\/\1><[\w\W]+> promise = {
3190 <(\w+)\s*\/?><\/\1><[\w\W]+> state: function() {
3191 <(\w+)\s*\/?><\/\1><[\w\W]+> return state;
3192 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3193 <(\w+)\s*\/?><\/\1><[\w\W]+> always: function() {
3194 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.done( arguments ).fail( arguments );
3195 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3196 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3197 <(\w+)\s*\/?><\/\1><[\w\W]+> then: function( /* fnDone, fnFail, fnProgress */ ) {
3198 <(\w+)\s*\/?><\/\1><[\w\W]+> var fns = arguments;
3199 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.Deferred(function( newDefer ) {
3200 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( tuples, function( i, tuple ) {
3201 <(\w+)\s*\/?><\/\1><[\w\W]+> var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
3202 <(\w+)\s*\/?><\/\1><[\w\W]+> // deferred[ done | fail | progress ] for forwarding actions to newDefer
3203 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[1] ](function() {
3204 <(\w+)\s*\/?><\/\1><[\w\W]+> var returned = fn && fn.apply( this, arguments );
3205 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( returned && jQuery.isFunction( returned.promise ) ) {
3206 <(\w+)\s*\/?><\/\1><[\w\W]+> returned.promise()
3207 <(\w+)\s*\/?><\/\1><[\w\W]+> .done( newDefer.resolve )
3208 <(\w+)\s*\/?><\/\1><[\w\W]+> .fail( newDefer.reject )
3209 <(\w+)\s*\/?><\/\1><[\w\W]+> .progress( newDefer.notify );
3210 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3211 <(\w+)\s*\/?><\/\1><[\w\W]+> newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
3212 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3213 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3214 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3215 <(\w+)\s*\/?><\/\1><[\w\W]+> fns = null;
3216 <(\w+)\s*\/?><\/\1><[\w\W]+> }).promise();
3217 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3218 <(\w+)\s*\/?><\/\1><[\w\W]+> // Get a promise for this deferred
3219 <(\w+)\s*\/?><\/\1><[\w\W]+> // If obj is provided, the promise aspect is added to the object
3220 <(\w+)\s*\/?><\/\1><[\w\W]+> promise: function( obj ) {
3221 <(\w+)\s*\/?><\/\1><[\w\W]+> return obj != null ? jQuery.extend( obj, promise ) : promise;
3222 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3223 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3224 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred = {};
3225  
3226 <(\w+)\s*\/?><\/\1><[\w\W]+> // Keep pipe for back-compat
3227 <(\w+)\s*\/?><\/\1><[\w\W]+> promise.pipe = promise.then;
3228  
3229 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add list-specific methods
3230 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each( tuples, function( i, tuple ) {
3231 <(\w+)\s*\/?><\/\1><[\w\W]+> var list = tuple[ 2 ],
3232 <(\w+)\s*\/?><\/\1><[\w\W]+> stateString = tuple[ 3 ];
3233  
3234 <(\w+)\s*\/?><\/\1><[\w\W]+> // promise[ done | fail | progress ] = list.add
3235 <(\w+)\s*\/?><\/\1><[\w\W]+> promise[ tuple[1] ] = list.add;
3236  
3237 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle state
3238 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( stateString ) {
3239 <(\w+)\s*\/?><\/\1><[\w\W]+> list.add(function() {
3240 <(\w+)\s*\/?><\/\1><[\w\W]+> // state = [ resolved | rejected ]
3241 <(\w+)\s*\/?><\/\1><[\w\W]+> state = stateString;
3242  
3243 <(\w+)\s*\/?><\/\1><[\w\W]+> // [ reject_list | resolve_list ].disable; progress_list.lock
3244 <(\w+)\s*\/?><\/\1><[\w\W]+> }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
3245 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3246  
3247 <(\w+)\s*\/?><\/\1><[\w\W]+> // deferred[ resolve | reject | notify ]
3248 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[0] ] = function() {
3249 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
3250 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3251 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3252 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred[ tuple[0] + "With" ] = list.fireWith;
3253 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3254  
3255 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make the deferred a promise
3256 <(\w+)\s*\/?><\/\1><[\w\W]+> promise.promise( deferred );
3257  
3258 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call given func if any
3259 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( func ) {
3260 <(\w+)\s*\/?><\/\1><[\w\W]+> func.call( deferred, deferred );
3261 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3262  
3263 <(\w+)\s*\/?><\/\1><[\w\W]+> // All done!
3264 <(\w+)\s*\/?><\/\1><[\w\W]+> return deferred;
3265 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3266  
3267 <(\w+)\s*\/?><\/\1><[\w\W]+> // Deferred helper
3268 <(\w+)\s*\/?><\/\1><[\w\W]+> when: function( subordinate /* , ..., subordinateN */ ) {
3269 <(\w+)\s*\/?><\/\1><[\w\W]+> var i = 0,
3270 <(\w+)\s*\/?><\/\1><[\w\W]+> resolveValues = slice.call( arguments ),
3271 <(\w+)\s*\/?><\/\1><[\w\W]+> length = resolveValues.length,
3272  
3273 <(\w+)\s*\/?><\/\1><[\w\W]+> // the count of uncompleted subordinates
3274 <(\w+)\s*\/?><\/\1><[\w\W]+> remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
3275  
3276 <(\w+)\s*\/?><\/\1><[\w\W]+> // the master Deferred. If resolveValues consist of only a single Deferred, just use that.
3277 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
3278  
3279 <(\w+)\s*\/?><\/\1><[\w\W]+> // Update function for both resolve and progress values
3280 <(\w+)\s*\/?><\/\1><[\w\W]+> updateFunc = function( i, contexts, values ) {
3281 <(\w+)\s*\/?><\/\1><[\w\W]+> return function( value ) {
3282 <(\w+)\s*\/?><\/\1><[\w\W]+> contexts[ i ] = this;
3283 <(\w+)\s*\/?><\/\1><[\w\W]+> values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
3284 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( values === progressValues ) {
3285 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.notifyWith( contexts, values );
3286 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( !( --remaining ) ) {
3287 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.resolveWith( contexts, values );
3288 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3289 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3290 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3291  
3292 <(\w+)\s*\/?><\/\1><[\w\W]+> progressValues, progressContexts, resolveContexts;
3293  
3294 <(\w+)\s*\/?><\/\1><[\w\W]+> // add listeners to Deferred subordinates; treat others as resolved
3295 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( length > 1 ) {
3296 <(\w+)\s*\/?><\/\1><[\w\W]+> progressValues = new Array( length );
3297 <(\w+)\s*\/?><\/\1><[\w\W]+> progressContexts = new Array( length );
3298 <(\w+)\s*\/?><\/\1><[\w\W]+> resolveContexts = new Array( length );
3299 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < length; i++ ) {
3300 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
3301 <(\w+)\s*\/?><\/\1><[\w\W]+> resolveValues[ i ].promise()
3302 <(\w+)\s*\/?><\/\1><[\w\W]+> .done( updateFunc( i, resolveContexts, resolveValues ) )
3303 <(\w+)\s*\/?><\/\1><[\w\W]+> .fail( deferred.reject )
3304 <(\w+)\s*\/?><\/\1><[\w\W]+> .progress( updateFunc( i, progressContexts, progressValues ) );
3305 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3306 <(\w+)\s*\/?><\/\1><[\w\W]+> --remaining;
3307 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3308 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3309 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3310  
3311 <(\w+)\s*\/?><\/\1><[\w\W]+> // if we're not waiting on anything, resolve the master
3312 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !remaining ) {
3313 <(\w+)\s*\/?><\/\1><[\w\W]+> deferred.resolveWith( resolveContexts, resolveValues );
3314 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3315  
3316 <(\w+)\s*\/?><\/\1><[\w\W]+> return deferred.promise();
3317 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3318 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3319  
3320  
3321 <(\w+)\s*\/?><\/\1><[\w\W]+>// The deferred used on DOM ready
3322 <(\w+)\s*\/?><\/\1><[\w\W]+>var readyList;
3323  
3324 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.ready = function( fn ) {
3325 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add the callback
3326 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.ready.promise().done( fn );
3327  
3328 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
3329 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3330  
3331 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3332 <(\w+)\s*\/?><\/\1><[\w\W]+> // Is the DOM ready to be used? Set to true once it occurs.
3333 <(\w+)\s*\/?><\/\1><[\w\W]+> isReady: false,
3334  
3335 <(\w+)\s*\/?><\/\1><[\w\W]+> // A counter to track how many items to wait for before
3336 <(\w+)\s*\/?><\/\1><[\w\W]+> // the ready event fires. See #6781
3337 <(\w+)\s*\/?><\/\1><[\w\W]+> readyWait: 1,
3338  
3339 <(\w+)\s*\/?><\/\1><[\w\W]+> // Hold (or release) the ready event
3340 <(\w+)\s*\/?><\/\1><[\w\W]+> holdReady: function( hold ) {
3341 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( hold ) {
3342 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.readyWait++;
3343 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3344 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.ready( true );
3345 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3346 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3347  
3348 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle when the DOM is ready
3349 <(\w+)\s*\/?><\/\1><[\w\W]+> ready: function( wait ) {
3350  
3351 <(\w+)\s*\/?><\/\1><[\w\W]+> // Abort if there are pending holds or we're already ready
3352 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
3353 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
3354 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3355  
3356 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remember that the DOM is ready
3357 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.isReady = true;
3358  
3359 <(\w+)\s*\/?><\/\1><[\w\W]+> // If a normal DOM Ready event fired, decrement, and wait if need be
3360 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( wait !== true && --jQuery.readyWait > 0 ) {
3361 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
3362 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3363  
3364 <(\w+)\s*\/?><\/\1><[\w\W]+> // If there are functions bound, to execute
3365 <(\w+)\s*\/?><\/\1><[\w\W]+> readyList.resolveWith( document, [ jQuery ] );
3366  
3367 <(\w+)\s*\/?><\/\1><[\w\W]+> // Trigger any bound ready events
3368 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.fn.trigger ) {
3369 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( document ).trigger("ready").off("ready");
3370 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3371 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3372 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3373  
3374 <(\w+)\s*\/?><\/\1><[\w\W]+>/**
3375 <(\w+)\s*\/?><\/\1><[\w\W]+> * The ready event handler and self cleanup method
3376 <(\w+)\s*\/?><\/\1><[\w\W]+> */
3377 <(\w+)\s*\/?><\/\1><[\w\W]+>function completed() {
3378 <(\w+)\s*\/?><\/\1><[\w\W]+> document.removeEventListener( "DOMContentLoaded", completed, false );
3379 <(\w+)\s*\/?><\/\1><[\w\W]+> window.removeEventListener( "load", completed, false );
3380 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.ready();
3381 <(\w+)\s*\/?><\/\1><[\w\W]+>}
3382  
3383 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.ready.promise = function( obj ) {
3384 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !readyList ) {
3385  
3386 <(\w+)\s*\/?><\/\1><[\w\W]+> readyList = jQuery.Deferred();
3387  
3388 <(\w+)\s*\/?><\/\1><[\w\W]+> // Catch cases where $(document).ready() is called after the browser event has already occurred.
3389 <(\w+)\s*\/?><\/\1><[\w\W]+> // we once tried to use readyState "interactive" here, but it caused issues like the one
3390 <(\w+)\s*\/?><\/\1><[\w\W]+> // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
3391 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( document.readyState === "complete" ) {
3392 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle it asynchronously to allow scripts the opportunity to delay ready
3393 <(\w+)\s*\/?><\/\1><[\w\W]+> setTimeout( jQuery.ready );
3394  
3395 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3396  
3397 <(\w+)\s*\/?><\/\1><[\w\W]+> // Use the handy event callback
3398 <(\w+)\s*\/?><\/\1><[\w\W]+> document.addEventListener( "DOMContentLoaded", completed, false );
3399  
3400 <(\w+)\s*\/?><\/\1><[\w\W]+> // A fallback to window.onload, that will always work
3401 <(\w+)\s*\/?><\/\1><[\w\W]+> window.addEventListener( "load", completed, false );
3402 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3403 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3404 <(\w+)\s*\/?><\/\1><[\w\W]+> return readyList.promise( obj );
3405 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3406  
3407 <(\w+)\s*\/?><\/\1><[\w\W]+>// Kick off the DOM ready check even if the user does not
3408 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.ready.promise();
3409  
3410  
3411  
3412  
3413 <(\w+)\s*\/?><\/\1><[\w\W]+>// Multifunctional method to get and set values of a collection
3414 <(\w+)\s*\/?><\/\1><[\w\W]+>// The value/s can optionally be executed if it's a function
3415 <(\w+)\s*\/?><\/\1><[\w\W]+>var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
3416 <(\w+)\s*\/?><\/\1><[\w\W]+> var i = 0,
3417 <(\w+)\s*\/?><\/\1><[\w\W]+> len = elems.length,
3418 <(\w+)\s*\/?><\/\1><[\w\W]+> bulk = key == null;
3419  
3420 <(\w+)\s*\/?><\/\1><[\w\W]+> // Sets many values
3421 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.type( key ) === "object" ) {
3422 <(\w+)\s*\/?><\/\1><[\w\W]+> chainable = true;
3423 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( i in key ) {
3424 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
3425 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3426  
3427 <(\w+)\s*\/?><\/\1><[\w\W]+> // Sets one value
3428 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( value !== undefined ) {
3429 <(\w+)\s*\/?><\/\1><[\w\W]+> chainable = true;
3430  
3431 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !jQuery.isFunction( value ) ) {
3432 <(\w+)\s*\/?><\/\1><[\w\W]+> raw = true;
3433 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3434  
3435 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( bulk ) {
3436 <(\w+)\s*\/?><\/\1><[\w\W]+> // Bulk operations run against the entire set
3437 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( raw ) {
3438 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.call( elems, value );
3439 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = null;
3440  
3441 <(\w+)\s*\/?><\/\1><[\w\W]+> // ...except when executing function values
3442 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3443 <(\w+)\s*\/?><\/\1><[\w\W]+> bulk = fn;
3444 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = function( elem, key, value ) {
3445 <(\w+)\s*\/?><\/\1><[\w\W]+> return bulk.call( jQuery( elem ), value );
3446 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3447 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3448 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3449  
3450 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn ) {
3451 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; i < len; i++ ) {
3452 <(\w+)\s*\/?><\/\1><[\w\W]+> fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
3453 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3454 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3455 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3456  
3457 <(\w+)\s*\/?><\/\1><[\w\W]+> return chainable ?
3458 <(\w+)\s*\/?><\/\1><[\w\W]+> elems :
3459  
3460 <(\w+)\s*\/?><\/\1><[\w\W]+> // Gets
3461 <(\w+)\s*\/?><\/\1><[\w\W]+> bulk ?
3462 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.call( elems ) :
3463 <(\w+)\s*\/?><\/\1><[\w\W]+> len ? fn( elems[0], key ) : emptyGet;
3464 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3465  
3466  
3467 <(\w+)\s*\/?><\/\1><[\w\W]+>/**
3468 <(\w+)\s*\/?><\/\1><[\w\W]+> * Determines whether an object can have data
3469 <(\w+)\s*\/?><\/\1><[\w\W]+> */
3470 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.acceptData = function( owner ) {
3471 <(\w+)\s*\/?><\/\1><[\w\W]+> // Accepts only:
3472 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Node
3473 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Node.ELEMENT_NODE
3474 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Node.DOCUMENT_NODE
3475 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Object
3476 <(\w+)\s*\/?><\/\1><[\w\W]+> // - Any
3477 <(\w+)\s*\/?><\/\1><[\w\W]+> /* jshint -W018 */
3478 <(\w+)\s*\/?><\/\1><[\w\W]+> return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
3479 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3480  
3481  
3482 <(\w+)\s*\/?><\/\1><[\w\W]+>function Data() {
3483 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Android < 4,
3484 <(\w+)\s*\/?><\/\1><[\w\W]+> // Old WebKit does not have Object.preventExtensions/freeze method,
3485 <(\w+)\s*\/?><\/\1><[\w\W]+> // return new empty object instead with no [[set]] accessor
3486 <(\w+)\s*\/?><\/\1><[\w\W]+> Object.defineProperty( this.cache = {}, 0, {
3487 <(\w+)\s*\/?><\/\1><[\w\W]+> get: function() {
3488 <(\w+)\s*\/?><\/\1><[\w\W]+> return {};
3489 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3490 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3491  
3492 <(\w+)\s*\/?><\/\1><[\w\W]+> this.expando = jQuery.expando + Math.random();
3493 <(\w+)\s*\/?><\/\1><[\w\W]+>}
3494  
3495 <(\w+)\s*\/?><\/\1><[\w\W]+>Data.uid = 1;
3496 <(\w+)\s*\/?><\/\1><[\w\W]+>Data.accepts = jQuery.acceptData;
3497  
3498 <(\w+)\s*\/?><\/\1><[\w\W]+>Data.prototype = {
3499 <(\w+)\s*\/?><\/\1><[\w\W]+> key: function( owner ) {
3500 <(\w+)\s*\/?><\/\1><[\w\W]+> // We can accept data for non-element nodes in modern browsers,
3501 <(\w+)\s*\/?><\/\1><[\w\W]+> // but we should not, see #8335.
3502 <(\w+)\s*\/?><\/\1><[\w\W]+> // Always return the key for a frozen object.
3503 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !Data.accepts( owner ) ) {
3504 <(\w+)\s*\/?><\/\1><[\w\W]+> return 0;
3505 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3506  
3507 <(\w+)\s*\/?><\/\1><[\w\W]+> var descriptor = {},
3508 <(\w+)\s*\/?><\/\1><[\w\W]+> // Check if the owner object already has a cache key
3509 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = owner[ this.expando ];
3510  
3511 <(\w+)\s*\/?><\/\1><[\w\W]+> // If not, create one
3512 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !unlock ) {
3513 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = Data.uid++;
3514  
3515 <(\w+)\s*\/?><\/\1><[\w\W]+> // Secure it in a non-enumerable, non-writable property
3516 <(\w+)\s*\/?><\/\1><[\w\W]+> try {
3517 <(\w+)\s*\/?><\/\1><[\w\W]+> descriptor[ this.expando ] = { value: unlock };
3518 <(\w+)\s*\/?><\/\1><[\w\W]+> Object.defineProperties( owner, descriptor );
3519  
3520 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Android < 4
3521 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fallback to a less secure definition
3522 <(\w+)\s*\/?><\/\1><[\w\W]+> } catch ( e ) {
3523 <(\w+)\s*\/?><\/\1><[\w\W]+> descriptor[ this.expando ] = unlock;
3524 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( owner, descriptor );
3525 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3526 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3527  
3528 <(\w+)\s*\/?><\/\1><[\w\W]+> // Ensure the cache object
3529 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !this.cache[ unlock ] ) {
3530 <(\w+)\s*\/?><\/\1><[\w\W]+> this.cache[ unlock ] = {};
3531 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3532  
3533 <(\w+)\s*\/?><\/\1><[\w\W]+> return unlock;
3534 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3535 <(\w+)\s*\/?><\/\1><[\w\W]+> set: function( owner, data, value ) {
3536 <(\w+)\s*\/?><\/\1><[\w\W]+> var prop,
3537 <(\w+)\s*\/?><\/\1><[\w\W]+> // There may be an unlock assigned to this node,
3538 <(\w+)\s*\/?><\/\1><[\w\W]+> // if there is no entry for this "owner", create one inline
3539 <(\w+)\s*\/?><\/\1><[\w\W]+> // and set the unlock as though an owner entry had always existed
3540 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = this.key( owner ),
3541 <(\w+)\s*\/?><\/\1><[\w\W]+> cache = this.cache[ unlock ];
3542  
3543 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle: [ owner, key, value ] args
3544 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof data === "string" ) {
3545 <(\w+)\s*\/?><\/\1><[\w\W]+> cache[ data ] = value;
3546  
3547 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle: [ owner, { properties } ] args
3548 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3549 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fresh assignments by object are shallow copied
3550 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isEmptyObject( cache ) ) {
3551 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( this.cache[ unlock ], data );
3552 <(\w+)\s*\/?><\/\1><[\w\W]+> // Otherwise, copy the properties one-by-one to the cache object
3553 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3554 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( prop in data ) {
3555 <(\w+)\s*\/?><\/\1><[\w\W]+> cache[ prop ] = data[ prop ];
3556 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3557 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3558 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3559 <(\w+)\s*\/?><\/\1><[\w\W]+> return cache;
3560 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3561 <(\w+)\s*\/?><\/\1><[\w\W]+> get: function( owner, key ) {
3562 <(\w+)\s*\/?><\/\1><[\w\W]+> // Either a valid cache is found, or will be created.
3563 <(\w+)\s*\/?><\/\1><[\w\W]+> // New caches will be created and the unlock returned,
3564 <(\w+)\s*\/?><\/\1><[\w\W]+> // allowing direct access to the newly created
3565 <(\w+)\s*\/?><\/\1><[\w\W]+> // empty data object. A valid owner object must be provided.
3566 <(\w+)\s*\/?><\/\1><[\w\W]+> var cache = this.cache[ this.key( owner ) ];
3567  
3568 <(\w+)\s*\/?><\/\1><[\w\W]+> return key === undefined ?
3569 <(\w+)\s*\/?><\/\1><[\w\W]+> cache : cache[ key ];
3570 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3571 <(\w+)\s*\/?><\/\1><[\w\W]+> access: function( owner, key, value ) {
3572 <(\w+)\s*\/?><\/\1><[\w\W]+> var stored;
3573 <(\w+)\s*\/?><\/\1><[\w\W]+> // In cases where either:
3574 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3575 <(\w+)\s*\/?><\/\1><[\w\W]+> // 1. No key was specified
3576 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2. A string key was specified, but no value provided
3577 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3578 <(\w+)\s*\/?><\/\1><[\w\W]+> // Take the "read" path and allow the get method to determine
3579 <(\w+)\s*\/?><\/\1><[\w\W]+> // which value to return, respectively either:
3580 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3581 <(\w+)\s*\/?><\/\1><[\w\W]+> // 1. The entire cache object
3582 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2. The data stored at the key
3583 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3584 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key === undefined ||
3585 <(\w+)\s*\/?><\/\1><[\w\W]+> ((key && typeof key === "string") && value === undefined) ) {
3586  
3587 <(\w+)\s*\/?><\/\1><[\w\W]+> stored = this.get( owner, key );
3588  
3589 <(\w+)\s*\/?><\/\1><[\w\W]+> return stored !== undefined ?
3590 <(\w+)\s*\/?><\/\1><[\w\W]+> stored : this.get( owner, jQuery.camelCase(key) );
3591 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3592  
3593 <(\w+)\s*\/?><\/\1><[\w\W]+> // [*]When the key is not a string, or both a key and value
3594 <(\w+)\s*\/?><\/\1><[\w\W]+> // are specified, set or extend (existing objects) with either:
3595 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3596 <(\w+)\s*\/?><\/\1><[\w\W]+> // 1. An object of properties
3597 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2. A key and value
3598 <(\w+)\s*\/?><\/\1><[\w\W]+> //
3599 <(\w+)\s*\/?><\/\1><[\w\W]+> this.set( owner, key, value );
3600  
3601 <(\w+)\s*\/?><\/\1><[\w\W]+> // Since the "set" path can have two possible entry points
3602 <(\w+)\s*\/?><\/\1><[\w\W]+> // return the expected data based on which path was taken[*]
3603 <(\w+)\s*\/?><\/\1><[\w\W]+> return value !== undefined ? value : key;
3604 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3605 <(\w+)\s*\/?><\/\1><[\w\W]+> remove: function( owner, key ) {
3606 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, name, camel,
3607 <(\w+)\s*\/?><\/\1><[\w\W]+> unlock = this.key( owner ),
3608 <(\w+)\s*\/?><\/\1><[\w\W]+> cache = this.cache[ unlock ];
3609  
3610 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key === undefined ) {
3611 <(\w+)\s*\/?><\/\1><[\w\W]+> this.cache[ unlock ] = {};
3612  
3613 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3614 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support array or space separated string of keys
3615 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isArray( key ) ) {
3616 <(\w+)\s*\/?><\/\1><[\w\W]+> // If "name" is an array of keys...
3617 <(\w+)\s*\/?><\/\1><[\w\W]+> // When data is initially created, via ("key", "val") signature,
3618 <(\w+)\s*\/?><\/\1><[\w\W]+> // keys will be converted to camelCase.
3619 <(\w+)\s*\/?><\/\1><[\w\W]+> // Since there is no way to tell _how_ a key was added, remove
3620 <(\w+)\s*\/?><\/\1><[\w\W]+> // both plain key and camelCase key. #12786
3621 <(\w+)\s*\/?><\/\1><[\w\W]+> // This will only penalize the array argument path.
3622 <(\w+)\s*\/?><\/\1><[\w\W]+> name = key.concat( key.map( jQuery.camelCase ) );
3623 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3624 <(\w+)\s*\/?><\/\1><[\w\W]+> camel = jQuery.camelCase( key );
3625 <(\w+)\s*\/?><\/\1><[\w\W]+> // Try the string as a key before any manipulation
3626 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key in cache ) {
3627 <(\w+)\s*\/?><\/\1><[\w\W]+> name = [ key, camel ];
3628 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3629 <(\w+)\s*\/?><\/\1><[\w\W]+> // If a key with the spaces exists, use it.
3630 <(\w+)\s*\/?><\/\1><[\w\W]+> // Otherwise, create an array by matching non-whitespace
3631 <(\w+)\s*\/?><\/\1><[\w\W]+> name = camel;
3632 <(\w+)\s*\/?><\/\1><[\w\W]+> name = name in cache ?
3633 <(\w+)\s*\/?><\/\1><[\w\W]+> [ name ] : ( name.match( rnotwhite ) || [] );
3634 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3635 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3636  
3637 <(\w+)\s*\/?><\/\1><[\w\W]+> i = name.length;
3638 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
3639 <(\w+)\s*\/?><\/\1><[\w\W]+> delete cache[ name[ i ] ];
3640 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3641 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3642 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3643 <(\w+)\s*\/?><\/\1><[\w\W]+> hasData: function( owner ) {
3644 <(\w+)\s*\/?><\/\1><[\w\W]+> return !jQuery.isEmptyObject(
3645 <(\w+)\s*\/?><\/\1><[\w\W]+> this.cache[ owner[ this.expando ] ] || {}
3646 <(\w+)\s*\/?><\/\1><[\w\W]+> );
3647 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3648 <(\w+)\s*\/?><\/\1><[\w\W]+> discard: function( owner ) {
3649 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( owner[ this.expando ] ) {
3650 <(\w+)\s*\/?><\/\1><[\w\W]+> delete this.cache[ owner[ this.expando ] ];
3651 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3652 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3653 <(\w+)\s*\/?><\/\1><[\w\W]+>};
3654 <(\w+)\s*\/?><\/\1><[\w\W]+>var data_priv = new Data();
3655  
3656 <(\w+)\s*\/?><\/\1><[\w\W]+>var data_user = new Data();
3657  
3658  
3659  
3660 <(\w+)\s*\/?><\/\1><[\w\W]+>/*
3661 <(\w+)\s*\/?><\/\1><[\w\W]+> Implementation Summary
3662  
3663 <(\w+)\s*\/?><\/\1><[\w\W]+> 1. Enforce API surface and semantic compatibility with 1.9.x branch
3664 <(\w+)\s*\/?><\/\1><[\w\W]+> 2. Improve the module's maintainability by reducing the storage
3665 <(\w+)\s*\/?><\/\1><[\w\W]+> paths to a single mechanism.
3666 <(\w+)\s*\/?><\/\1><[\w\W]+> 3. Use the same single mechanism to support "private" and "user" data.
3667 <(\w+)\s*\/?><\/\1><[\w\W]+> 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
3668 <(\w+)\s*\/?><\/\1><[\w\W]+> 5. Avoid exposing implementation details on user objects (eg. expando properties)
3669 <(\w+)\s*\/?><\/\1><[\w\W]+> 6. Provide a clear path for implementation upgrade to WeakMap in 2014
3670 <(\w+)\s*\/?><\/\1><[\w\W]+>*/
3671 <(\w+)\s*\/?><\/\1><[\w\W]+>var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
3672 <(\w+)\s*\/?><\/\1><[\w\W]+> rmultiDash = /([A-Z])/g;
3673  
3674 <(\w+)\s*\/?><\/\1><[\w\W]+>function dataAttr( elem, key, data ) {
3675 <(\w+)\s*\/?><\/\1><[\w\W]+> var name;
3676  
3677 <(\w+)\s*\/?><\/\1><[\w\W]+> // If nothing was found internally, try to fetch any
3678 <(\w+)\s*\/?><\/\1><[\w\W]+> // data from the HTML5 data-* attribute
3679 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data === undefined && elem.nodeType === 1 ) {
3680 <(\w+)\s*\/?><\/\1><[\w\W]+> name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
3681 <(\w+)\s*\/?><\/\1><[\w\W]+> data = elem.getAttribute( name );
3682  
3683 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof data === "string" ) {
3684 <(\w+)\s*\/?><\/\1><[\w\W]+> try {
3685 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data === "true" ? true :
3686 <(\w+)\s*\/?><\/\1><[\w\W]+> data === "false" ? false :
3687 <(\w+)\s*\/?><\/\1><[\w\W]+> data === "null" ? null :
3688 <(\w+)\s*\/?><\/\1><[\w\W]+> // Only convert to a number if it doesn't change the string
3689 <(\w+)\s*\/?><\/\1><[\w\W]+> +data + "" === data ? +data :
3690 <(\w+)\s*\/?><\/\1><[\w\W]+> rbrace.test( data ) ? jQuery.parseJSON( data ) :
3691 <(\w+)\s*\/?><\/\1><[\w\W]+> data;
3692 <(\w+)\s*\/?><\/\1><[\w\W]+> } catch( e ) {}
3693  
3694 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make sure we set the data so it isn't changed later
3695 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( elem, key, data );
3696 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3697 <(\w+)\s*\/?><\/\1><[\w\W]+> data = undefined;
3698 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3699 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3700 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3701 <(\w+)\s*\/?><\/\1><[\w\W]+>}
3702  
3703 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3704 <(\w+)\s*\/?><\/\1><[\w\W]+> hasData: function( elem ) {
3705 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_user.hasData( elem ) || data_priv.hasData( elem );
3706 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3707  
3708 <(\w+)\s*\/?><\/\1><[\w\W]+> data: function( elem, name, data ) {
3709 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_user.access( elem, name, data );
3710 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3711  
3712 <(\w+)\s*\/?><\/\1><[\w\W]+> removeData: function( elem, name ) {
3713 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.remove( elem, name );
3714 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3715  
3716 <(\w+)\s*\/?><\/\1><[\w\W]+> // TODO: Now that all calls to _data and _removeData have been replaced
3717 <(\w+)\s*\/?><\/\1><[\w\W]+> // with direct calls to data_priv methods, these can be deprecated.
3718 <(\w+)\s*\/?><\/\1><[\w\W]+> _data: function( elem, name, data ) {
3719 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_priv.access( elem, name, data );
3720 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3721  
3722 <(\w+)\s*\/?><\/\1><[\w\W]+> _removeData: function( elem, name ) {
3723 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( elem, name );
3724 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3725 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3726  
3727 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
3728 <(\w+)\s*\/?><\/\1><[\w\W]+> data: function( key, value ) {
3729 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, name, data,
3730 <(\w+)\s*\/?><\/\1><[\w\W]+> elem = this[ 0 ],
3731 <(\w+)\s*\/?><\/\1><[\w\W]+> attrs = elem && elem.attributes;
3732  
3733 <(\w+)\s*\/?><\/\1><[\w\W]+> // Gets all values
3734 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key === undefined ) {
3735 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this.length ) {
3736 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data_user.get( elem );
3737  
3738 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) {
3739 <(\w+)\s*\/?><\/\1><[\w\W]+> i = attrs.length;
3740 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
3741 <(\w+)\s*\/?><\/\1><[\w\W]+> name = attrs[ i ].name;
3742  
3743 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( name.indexOf( "data-" ) === 0 ) {
3744 <(\w+)\s*\/?><\/\1><[\w\W]+> name = jQuery.camelCase( name.slice(5) );
3745 <(\w+)\s*\/?><\/\1><[\w\W]+> dataAttr( elem, name, data[ name ] );
3746 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3747 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3748 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.set( elem, "hasDataAttrs", true );
3749 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3750 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3751  
3752 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3753 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3754  
3755 <(\w+)\s*\/?><\/\1><[\w\W]+> // Sets multiple values
3756 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof key === "object" ) {
3757 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
3758 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( this, key );
3759 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3760 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3761  
3762 <(\w+)\s*\/?><\/\1><[\w\W]+> return access( this, function( value ) {
3763 <(\w+)\s*\/?><\/\1><[\w\W]+> var data,
3764 <(\w+)\s*\/?><\/\1><[\w\W]+> camelKey = jQuery.camelCase( key );
3765  
3766 <(\w+)\s*\/?><\/\1><[\w\W]+> // The calling jQuery object (element matches) is not empty
3767 <(\w+)\s*\/?><\/\1><[\w\W]+> // (and therefore has an element appears at this[ 0 ]) and the
3768 <(\w+)\s*\/?><\/\1><[\w\W]+> // `value` parameter was not undefined. An empty jQuery object
3769 <(\w+)\s*\/?><\/\1><[\w\W]+> // will result in `undefined` for elem = this[ 0 ] which will
3770 <(\w+)\s*\/?><\/\1><[\w\W]+> // throw an exception if an attempt to read a data cache is made.
3771 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem && value === undefined ) {
3772 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attempt to get data from the cache
3773 <(\w+)\s*\/?><\/\1><[\w\W]+> // with the key as-is
3774 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data_user.get( elem, key );
3775 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data !== undefined ) {
3776 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3777 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3778  
3779 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attempt to get data from the cache
3780 <(\w+)\s*\/?><\/\1><[\w\W]+> // with the key camelized
3781 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data_user.get( elem, camelKey );
3782 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data !== undefined ) {
3783 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3784 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3785  
3786 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attempt to "discover" the data in
3787 <(\w+)\s*\/?><\/\1><[\w\W]+> // HTML5 custom data-* attrs
3788 <(\w+)\s*\/?><\/\1><[\w\W]+> data = dataAttr( elem, camelKey, undefined );
3789 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data !== undefined ) {
3790 <(\w+)\s*\/?><\/\1><[\w\W]+> return data;
3791 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3792  
3793 <(\w+)\s*\/?><\/\1><[\w\W]+> // We tried really hard, but the data doesn't exist.
3794 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
3795 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3796  
3797 <(\w+)\s*\/?><\/\1><[\w\W]+> // Set the data...
3798 <(\w+)\s*\/?><\/\1><[\w\W]+> this.each(function() {
3799 <(\w+)\s*\/?><\/\1><[\w\W]+> // First, attempt to store a copy or reference of any
3800 <(\w+)\s*\/?><\/\1><[\w\W]+> // data that might've been store with a camelCased key.
3801 <(\w+)\s*\/?><\/\1><[\w\W]+> var data = data_user.get( this, camelKey );
3802  
3803 <(\w+)\s*\/?><\/\1><[\w\W]+> // For HTML5 data-* attribute interop, we have to
3804 <(\w+)\s*\/?><\/\1><[\w\W]+> // store property names with dashes in a camelCase form.
3805 <(\w+)\s*\/?><\/\1><[\w\W]+> // This might not apply to all properties...*
3806 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( this, camelKey, value );
3807  
3808 <(\w+)\s*\/?><\/\1><[\w\W]+> // *... In the case of properties that might _actually_
3809 <(\w+)\s*\/?><\/\1><[\w\W]+> // have dashes, we need to also store a copy of that
3810 <(\w+)\s*\/?><\/\1><[\w\W]+> // unchanged property.
3811 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( key.indexOf("-") !== -1 && data !== undefined ) {
3812 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.set( this, key, value );
3813 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3814 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3815 <(\w+)\s*\/?><\/\1><[\w\W]+> }, null, value, arguments.length > 1, null, true );
3816 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3817  
3818 <(\w+)\s*\/?><\/\1><[\w\W]+> removeData: function( key ) {
3819 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
3820 <(\w+)\s*\/?><\/\1><[\w\W]+> data_user.remove( this, key );
3821 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3822 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3823 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3824  
3825  
3826 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.extend({
3827 <(\w+)\s*\/?><\/\1><[\w\W]+> queue: function( elem, type, data ) {
3828 <(\w+)\s*\/?><\/\1><[\w\W]+> var queue;
3829  
3830 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem ) {
3831 <(\w+)\s*\/?><\/\1><[\w\W]+> type = ( type || "fx" ) + "queue";
3832 <(\w+)\s*\/?><\/\1><[\w\W]+> queue = data_priv.get( elem, type );
3833  
3834 <(\w+)\s*\/?><\/\1><[\w\W]+> // Speed up dequeue by getting out quickly if this is just a lookup
3835 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data ) {
3836 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !queue || jQuery.isArray( data ) ) {
3837 <(\w+)\s*\/?><\/\1><[\w\W]+> queue = data_priv.access( elem, type, jQuery.makeArray(data) );
3838 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
3839 <(\w+)\s*\/?><\/\1><[\w\W]+> queue.push( data );
3840 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3841 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3842 <(\w+)\s*\/?><\/\1><[\w\W]+> return queue || [];
3843 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3844 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3845  
3846 <(\w+)\s*\/?><\/\1><[\w\W]+> dequeue: function( elem, type ) {
3847 <(\w+)\s*\/?><\/\1><[\w\W]+> type = type || "fx";
3848  
3849 <(\w+)\s*\/?><\/\1><[\w\W]+> var queue = jQuery.queue( elem, type ),
3850 <(\w+)\s*\/?><\/\1><[\w\W]+> startLength = queue.length,
3851 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = queue.shift(),
3852 <(\w+)\s*\/?><\/\1><[\w\W]+> hooks = jQuery._queueHooks( elem, type ),
3853 <(\w+)\s*\/?><\/\1><[\w\W]+> next = function() {
3854 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.dequeue( elem, type );
3855 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3856  
3857 <(\w+)\s*\/?><\/\1><[\w\W]+> // If the fx queue is dequeued, always remove the progress sentinel
3858 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn === "inprogress" ) {
3859 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = queue.shift();
3860 <(\w+)\s*\/?><\/\1><[\w\W]+> startLength--;
3861 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3862  
3863 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn ) {
3864  
3865 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add a progress sentinel to prevent the fx queue from being
3866 <(\w+)\s*\/?><\/\1><[\w\W]+> // automatically dequeued
3867 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type === "fx" ) {
3868 <(\w+)\s*\/?><\/\1><[\w\W]+> queue.unshift( "inprogress" );
3869 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3870  
3871 <(\w+)\s*\/?><\/\1><[\w\W]+> // clear up the last queue stop function
3872 <(\w+)\s*\/?><\/\1><[\w\W]+> delete hooks.stop;
3873 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.call( elem, next, hooks );
3874 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3875  
3876 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !startLength && hooks ) {
3877 <(\w+)\s*\/?><\/\1><[\w\W]+> hooks.empty.fire();
3878 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3879 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3880  
3881 <(\w+)\s*\/?><\/\1><[\w\W]+> // not intended for public consumption - generates a queueHooks object, or returns the current one
3882 <(\w+)\s*\/?><\/\1><[\w\W]+> _queueHooks: function( elem, type ) {
3883 <(\w+)\s*\/?><\/\1><[\w\W]+> var key = type + "queueHooks";
3884 <(\w+)\s*\/?><\/\1><[\w\W]+> return data_priv.get( elem, key ) || data_priv.access( elem, key, {
3885 <(\w+)\s*\/?><\/\1><[\w\W]+> empty: jQuery.Callbacks("once memory").add(function() {
3886 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( elem, [ type + "queue", key ] );
3887 <(\w+)\s*\/?><\/\1><[\w\W]+> })
3888 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3889 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3890 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3891  
3892 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
3893 <(\w+)\s*\/?><\/\1><[\w\W]+> queue: function( type, data ) {
3894 <(\w+)\s*\/?><\/\1><[\w\W]+> var setter = 2;
3895  
3896 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof type !== "string" ) {
3897 <(\w+)\s*\/?><\/\1><[\w\W]+> data = type;
3898 <(\w+)\s*\/?><\/\1><[\w\W]+> type = "fx";
3899 <(\w+)\s*\/?><\/\1><[\w\W]+> setter--;
3900 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3901  
3902 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( arguments.length < setter ) {
3903 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.queue( this[0], type );
3904 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3905  
3906 <(\w+)\s*\/?><\/\1><[\w\W]+> return data === undefined ?
3907 <(\w+)\s*\/?><\/\1><[\w\W]+> this :
3908 <(\w+)\s*\/?><\/\1><[\w\W]+> this.each(function() {
3909 <(\w+)\s*\/?><\/\1><[\w\W]+> var queue = jQuery.queue( this, type, data );
3910  
3911 <(\w+)\s*\/?><\/\1><[\w\W]+> // ensure a hooks for this queue
3912 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery._queueHooks( this, type );
3913  
3914 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type === "fx" && queue[0] !== "inprogress" ) {
3915 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.dequeue( this, type );
3916 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3917 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3918 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3919 <(\w+)\s*\/?><\/\1><[\w\W]+> dequeue: function( type ) {
3920 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
3921 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.dequeue( this, type );
3922 <(\w+)\s*\/?><\/\1><[\w\W]+> });
3923 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3924 <(\w+)\s*\/?><\/\1><[\w\W]+> clearQueue: function( type ) {
3925 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.queue( type || "fx", [] );
3926 <(\w+)\s*\/?><\/\1><[\w\W]+> },
3927 <(\w+)\s*\/?><\/\1><[\w\W]+> // Get a promise resolved when queues of a certain type
3928 <(\w+)\s*\/?><\/\1><[\w\W]+> // are emptied (fx is the type by default)
3929 <(\w+)\s*\/?><\/\1><[\w\W]+> promise: function( type, obj ) {
3930 <(\w+)\s*\/?><\/\1><[\w\W]+> var tmp,
3931 <(\w+)\s*\/?><\/\1><[\w\W]+> count = 1,
3932 <(\w+)\s*\/?><\/\1><[\w\W]+> defer = jQuery.Deferred(),
3933 <(\w+)\s*\/?><\/\1><[\w\W]+> elements = this,
3934 <(\w+)\s*\/?><\/\1><[\w\W]+> i = this.length,
3935 <(\w+)\s*\/?><\/\1><[\w\W]+> resolve = function() {
3936 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !( --count ) ) {
3937 <(\w+)\s*\/?><\/\1><[\w\W]+> defer.resolveWith( elements, [ elements ] );
3938 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3939 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3940  
3941 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof type !== "string" ) {
3942 <(\w+)\s*\/?><\/\1><[\w\W]+> obj = type;
3943 <(\w+)\s*\/?><\/\1><[\w\W]+> type = undefined;
3944 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3945 <(\w+)\s*\/?><\/\1><[\w\W]+> type = type || "fx";
3946  
3947 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
3948 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = data_priv.get( elements[ i ], type + "queueHooks" );
3949 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp && tmp.empty ) {
3950 <(\w+)\s*\/?><\/\1><[\w\W]+> count++;
3951 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp.empty.add( resolve );
3952 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3953 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3954 <(\w+)\s*\/?><\/\1><[\w\W]+> resolve();
3955 <(\w+)\s*\/?><\/\1><[\w\W]+> return defer.promise( obj );
3956 <(\w+)\s*\/?><\/\1><[\w\W]+> }
3957 <(\w+)\s*\/?><\/\1><[\w\W]+>});
3958 <(\w+)\s*\/?><\/\1><[\w\W]+>var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3959  
3960 <(\w+)\s*\/?><\/\1><[\w\W]+>var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
3961  
3962 <(\w+)\s*\/?><\/\1><[\w\W]+>var isHidden = function( elem, el ) {
3963 <(\w+)\s*\/?><\/\1><[\w\W]+> // isHidden might be called from jQuery#filter function;
3964 <(\w+)\s*\/?><\/\1><[\w\W]+> // in that case, element will be second argument
3965 <(\w+)\s*\/?><\/\1><[\w\W]+> elem = el || elem;
3966 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
3967 <(\w+)\s*\/?><\/\1><[\w\W]+> };
3968  
3969 <(\w+)\s*\/?><\/\1><[\w\W]+>var rcheckableType = (/^(?:checkbox|radio)$/i);
3970  
3971  
3972  
3973 <(\w+)\s*\/?><\/\1><[\w\W]+>(function() {
3974 <(\w+)\s*\/?><\/\1><[\w\W]+> var fragment = document.createDocumentFragment(),
3975 <(\w+)\s*\/?><\/\1><[\w\W]+> div = fragment.appendChild( document.createElement( "div" ) );
3976  
3977 <(\w+)\s*\/?><\/\1><[\w\W]+> // #11217 - WebKit loses check when the name is after the checked attribute
3978 <(\w+)\s*\/?><\/\1><[\w\W]+> div.innerHTML = "<input type='radio' checked='checked' name='t'/>";
3979  
3980 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3
3981 <(\w+)\s*\/?><\/\1><[\w\W]+> // old WebKit doesn't clone checked state correctly in fragments
3982 <(\w+)\s*\/?><\/\1><[\w\W]+> support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
3983  
3984 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make sure textarea (and checkbox) defaultValue is properly cloned
3985 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: IE9-IE11+
3986 <(\w+)\s*\/?><\/\1><[\w\W]+> div.innerHTML = "<textarea>x</textarea>";
3987 <(\w+)\s*\/?><\/\1><[\w\W]+> support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
3988 <(\w+)\s*\/?><\/\1><[\w\W]+>})();
3989 <(\w+)\s*\/?><\/\1><[\w\W]+>var strundefined = typeof undefined;
3990  
3991  
3992  
3993 <(\w+)\s*\/?><\/\1><[\w\W]+>support.focusinBubbles = "onfocusin" in window;
3994  
3995  
3996 <(\w+)\s*\/?><\/\1><[\w\W]+>var
3997 <(\w+)\s*\/?><\/\1><[\w\W]+> rkeyEvent = /^key/,
3998 <(\w+)\s*\/?><\/\1><[\w\W]+> rmouseEvent = /^(?:mouse|contextmenu)|click/,
3999 <(\w+)\s*\/?><\/\1><[\w\W]+> rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
4000 <(\w+)\s*\/?><\/\1><[\w\W]+> rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
4001  
4002 <(\w+)\s*\/?><\/\1><[\w\W]+>function returnTrue() {
4003 <(\w+)\s*\/?><\/\1><[\w\W]+> return true;
4004 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4005  
4006 <(\w+)\s*\/?><\/\1><[\w\W]+>function returnFalse() {
4007 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4008 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4009  
4010 <(\w+)\s*\/?><\/\1><[\w\W]+>function safeActiveElement() {
4011 <(\w+)\s*\/?><\/\1><[\w\W]+> try {
4012 <(\w+)\s*\/?><\/\1><[\w\W]+> return document.activeElement;
4013 <(\w+)\s*\/?><\/\1><[\w\W]+> } catch ( err ) { }
4014 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4015  
4016 <(\w+)\s*\/?><\/\1><[\w\W]+>/*
4017 <(\w+)\s*\/?><\/\1><[\w\W]+> * Helper functions for managing events -- not part of the public interface.
4018 <(\w+)\s*\/?><\/\1><[\w\W]+> * Props to Dean Edwards' addEvent library for many of the ideas.
4019 <(\w+)\s*\/?><\/\1><[\w\W]+> */
4020 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.event = {
4021  
4022 <(\w+)\s*\/?><\/\1><[\w\W]+> global: {},
4023  
4024 <(\w+)\s*\/?><\/\1><[\w\W]+> add: function( elem, types, handler, data, selector ) {
4025  
4026 <(\w+)\s*\/?><\/\1><[\w\W]+> var handleObjIn, eventHandle, tmp,
4027 <(\w+)\s*\/?><\/\1><[\w\W]+> events, t, handleObj,
4028 <(\w+)\s*\/?><\/\1><[\w\W]+> special, handlers, type, namespaces, origType,
4029 <(\w+)\s*\/?><\/\1><[\w\W]+> elemData = data_priv.get( elem );
4030  
4031 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't attach events to noData or text/comment nodes (but allow plain objects)
4032 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !elemData ) {
4033 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4034 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4035  
4036 <(\w+)\s*\/?><\/\1><[\w\W]+> // Caller can pass in an object of custom data in lieu of the handler
4037 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handler.handler ) {
4038 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObjIn = handler;
4039 <(\w+)\s*\/?><\/\1><[\w\W]+> handler = handleObjIn.handler;
4040 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = handleObjIn.selector;
4041 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4042  
4043 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make sure that the handler has a unique ID, used to find/remove it later
4044 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !handler.guid ) {
4045 <(\w+)\s*\/?><\/\1><[\w\W]+> handler.guid = jQuery.guid++;
4046 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4047  
4048 <(\w+)\s*\/?><\/\1><[\w\W]+> // Init the element's event structure and main handler, if this is the first
4049 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(events = elemData.events) ) {
4050 <(\w+)\s*\/?><\/\1><[\w\W]+> events = elemData.events = {};
4051 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4052 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(eventHandle = elemData.handle) ) {
4053 <(\w+)\s*\/?><\/\1><[\w\W]+> eventHandle = elemData.handle = function( e ) {
4054 <(\w+)\s*\/?><\/\1><[\w\W]+> // Discard the second event of a jQuery.event.trigger() and
4055 <(\w+)\s*\/?><\/\1><[\w\W]+> // when an event is called after a page has unloaded
4056 <(\w+)\s*\/?><\/\1><[\w\W]+> return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ?
4057 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.dispatch.apply( elem, arguments ) : undefined;
4058 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4059 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4060  
4061 <(\w+)\s*\/?><\/\1><[\w\W]+> // Handle multiple events separated by a space
4062 <(\w+)\s*\/?><\/\1><[\w\W]+> types = ( types || "" ).match( rnotwhite ) || [ "" ];
4063 <(\w+)\s*\/?><\/\1><[\w\W]+> t = types.length;
4064 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( t-- ) {
4065 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = rtypenamespace.exec( types[t] ) || [];
4066 <(\w+)\s*\/?><\/\1><[\w\W]+> type = origType = tmp[1];
4067 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = ( tmp[2] || "" ).split( "." ).sort();
4068  
4069 <(\w+)\s*\/?><\/\1><[\w\W]+> // There *must* be a type, no attaching namespace-only handlers
4070 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !type ) {
4071 <(\w+)\s*\/?><\/\1><[\w\W]+> continue;
4072 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4073  
4074 <(\w+)\s*\/?><\/\1><[\w\W]+> // If event changes its type, use the special event handlers for the changed type
4075 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4076  
4077 <(\w+)\s*\/?><\/\1><[\w\W]+> // If selector defined, determine special event api type, otherwise given type
4078 <(\w+)\s*\/?><\/\1><[\w\W]+> type = ( selector ? special.delegateType : special.bindType ) || type;
4079  
4080 <(\w+)\s*\/?><\/\1><[\w\W]+> // Update special based on newly reset type
4081 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4082  
4083 <(\w+)\s*\/?><\/\1><[\w\W]+> // handleObj is passed to all event handlers
4084 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = jQuery.extend({
4085 <(\w+)\s*\/?><\/\1><[\w\W]+> type: type,
4086 <(\w+)\s*\/?><\/\1><[\w\W]+> origType: origType,
4087 <(\w+)\s*\/?><\/\1><[\w\W]+> data: data,
4088 <(\w+)\s*\/?><\/\1><[\w\W]+> handler: handler,
4089 <(\w+)\s*\/?><\/\1><[\w\W]+> guid: handler.guid,
4090 <(\w+)\s*\/?><\/\1><[\w\W]+> selector: selector,
4091 <(\w+)\s*\/?><\/\1><[\w\W]+> needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
4092 <(\w+)\s*\/?><\/\1><[\w\W]+> namespace: namespaces.join(".")
4093 <(\w+)\s*\/?><\/\1><[\w\W]+> }, handleObjIn );
4094  
4095 <(\w+)\s*\/?><\/\1><[\w\W]+> // Init the event handler queue if we're the first
4096 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(handlers = events[ type ]) ) {
4097 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers = events[ type ] = [];
4098 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.delegateCount = 0;
4099  
4100 <(\w+)\s*\/?><\/\1><[\w\W]+> // Only use addEventListener if the special events handler returns false
4101 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
4102 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.addEventListener ) {
4103 <(\w+)\s*\/?><\/\1><[\w\W]+> elem.addEventListener( type, eventHandle, false );
4104 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4105 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4106 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4107  
4108 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.add ) {
4109 <(\w+)\s*\/?><\/\1><[\w\W]+> special.add.call( elem, handleObj );
4110  
4111 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !handleObj.handler.guid ) {
4112 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.handler.guid = handler.guid;
4113 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4114 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4115  
4116 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add to the element's handler list, delegates in front
4117 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector ) {
4118 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.splice( handlers.delegateCount++, 0, handleObj );
4119 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4120 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.push( handleObj );
4121 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4122  
4123 <(\w+)\s*\/?><\/\1><[\w\W]+> // Keep track of which events have ever been used, for event optimization
4124 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.global[ type ] = true;
4125 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4126  
4127 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4128  
4129 <(\w+)\s*\/?><\/\1><[\w\W]+> // Detach an event or set of events from an element
4130 <(\w+)\s*\/?><\/\1><[\w\W]+> remove: function( elem, types, handler, selector, mappedTypes ) {
4131  
4132 <(\w+)\s*\/?><\/\1><[\w\W]+> var j, origCount, tmp,
4133 <(\w+)\s*\/?><\/\1><[\w\W]+> events, t, handleObj,
4134 <(\w+)\s*\/?><\/\1><[\w\W]+> special, handlers, type, namespaces, origType,
4135 <(\w+)\s*\/?><\/\1><[\w\W]+> elemData = data_priv.hasData( elem ) && data_priv.get( elem );
4136  
4137 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !elemData || !(events = elemData.events) ) {
4138 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4139 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4140  
4141 <(\w+)\s*\/?><\/\1><[\w\W]+> // Once for each type.namespace in types; type may be omitted
4142 <(\w+)\s*\/?><\/\1><[\w\W]+> types = ( types || "" ).match( rnotwhite ) || [ "" ];
4143 <(\w+)\s*\/?><\/\1><[\w\W]+> t = types.length;
4144 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( t-- ) {
4145 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = rtypenamespace.exec( types[t] ) || [];
4146 <(\w+)\s*\/?><\/\1><[\w\W]+> type = origType = tmp[1];
4147 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = ( tmp[2] || "" ).split( "." ).sort();
4148  
4149 <(\w+)\s*\/?><\/\1><[\w\W]+> // Unbind all events (on this namespace, if provided) for the element
4150 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !type ) {
4151 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( type in events ) {
4152 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
4153 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4154 <(\w+)\s*\/?><\/\1><[\w\W]+> continue;
4155 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4156  
4157 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4158 <(\w+)\s*\/?><\/\1><[\w\W]+> type = ( selector ? special.delegateType : special.bindType ) || type;
4159 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers = events[ type ] || [];
4160 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
4161  
4162 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove matching events
4163 <(\w+)\s*\/?><\/\1><[\w\W]+> origCount = j = handlers.length;
4164 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( j-- ) {
4165 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = handlers[ j ];
4166  
4167 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( ( mappedTypes || origType === handleObj.origType ) &&
4168 <(\w+)\s*\/?><\/\1><[\w\W]+> ( !handler || handler.guid === handleObj.guid ) &&
4169 <(\w+)\s*\/?><\/\1><[\w\W]+> ( !tmp || tmp.test( handleObj.namespace ) ) &&
4170 <(\w+)\s*\/?><\/\1><[\w\W]+> ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
4171 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.splice( j, 1 );
4172  
4173 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handleObj.selector ) {
4174 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers.delegateCount--;
4175 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4176 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.remove ) {
4177 <(\w+)\s*\/?><\/\1><[\w\W]+> special.remove.call( elem, handleObj );
4178 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4179 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4180 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4181  
4182 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove generic event handler if we removed something and no more handlers exist
4183 <(\w+)\s*\/?><\/\1><[\w\W]+> // (avoids potential for endless recursion during removal of special event handlers)
4184 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( origCount && !handlers.length ) {
4185 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
4186 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.removeEvent( elem, type, elemData.handle );
4187 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4188  
4189 <(\w+)\s*\/?><\/\1><[\w\W]+> delete events[ type ];
4190 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4191 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4192  
4193 <(\w+)\s*\/?><\/\1><[\w\W]+> // Remove the expando if it's no longer used
4194 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( jQuery.isEmptyObject( events ) ) {
4195 <(\w+)\s*\/?><\/\1><[\w\W]+> delete elemData.handle;
4196 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( elem, "events" );
4197 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4198 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4199  
4200 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function( event, data, elem, onlyHandlers ) {
4201  
4202 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, cur, tmp, bubbleType, ontype, handle, special,
4203 <(\w+)\s*\/?><\/\1><[\w\W]+> eventPath = [ elem || document ],
4204 <(\w+)\s*\/?><\/\1><[\w\W]+> type = hasOwn.call( event, "type" ) ? event.type : event,
4205 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
4206  
4207 <(\w+)\s*\/?><\/\1><[\w\W]+> cur = tmp = elem = elem || document;
4208  
4209 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't do events on text and comment nodes
4210 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
4211 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4212 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4213  
4214 <(\w+)\s*\/?><\/\1><[\w\W]+> // focus/blur morphs to focusin/out; ensure we're not firing them right now
4215 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
4216 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4217 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4218  
4219 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( type.indexOf(".") >= 0 ) {
4220 <(\w+)\s*\/?><\/\1><[\w\W]+> // Namespaced trigger; create a regexp to match event type in handle()
4221 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces = type.split(".");
4222 <(\w+)\s*\/?><\/\1><[\w\W]+> type = namespaces.shift();
4223 <(\w+)\s*\/?><\/\1><[\w\W]+> namespaces.sort();
4224 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4225 <(\w+)\s*\/?><\/\1><[\w\W]+> ontype = type.indexOf(":") < 0 && "on" + type;
4226  
4227 <(\w+)\s*\/?><\/\1><[\w\W]+> // Caller can pass in a jQuery.Event object, Object, or just an event type string
4228 <(\w+)\s*\/?><\/\1><[\w\W]+> event = event[ jQuery.expando ] ?
4229 <(\w+)\s*\/?><\/\1><[\w\W]+> event :
4230 <(\w+)\s*\/?><\/\1><[\w\W]+> new jQuery.Event( type, typeof event === "object" && event );
4231  
4232 <(\w+)\s*\/?><\/\1><[\w\W]+> // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
4233 <(\w+)\s*\/?><\/\1><[\w\W]+> event.isTrigger = onlyHandlers ? 2 : 3;
4234 <(\w+)\s*\/?><\/\1><[\w\W]+> event.namespace = namespaces.join(".");
4235 <(\w+)\s*\/?><\/\1><[\w\W]+> event.namespace_re = event.namespace ?
4236 <(\w+)\s*\/?><\/\1><[\w\W]+> new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
4237 <(\w+)\s*\/?><\/\1><[\w\W]+> null;
4238  
4239 <(\w+)\s*\/?><\/\1><[\w\W]+> // Clean up the event in case it is being reused
4240 <(\w+)\s*\/?><\/\1><[\w\W]+> event.result = undefined;
4241 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.target ) {
4242 <(\w+)\s*\/?><\/\1><[\w\W]+> event.target = elem;
4243 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4244  
4245 <(\w+)\s*\/?><\/\1><[\w\W]+> // Clone any incoming data and prepend the event, creating the handler arg list
4246 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data == null ?
4247 <(\w+)\s*\/?><\/\1><[\w\W]+> [ event ] :
4248 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.makeArray( data, [ event ] );
4249  
4250 <(\w+)\s*\/?><\/\1><[\w\W]+> // Allow special events to draw outside the lines
4251 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ type ] || {};
4252 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
4253 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4254 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4255  
4256 <(\w+)\s*\/?><\/\1><[\w\W]+> // Determine event propagation path in advance, per W3C events spec (#9951)
4257 <(\w+)\s*\/?><\/\1><[\w\W]+> // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
4258 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
4259  
4260 <(\w+)\s*\/?><\/\1><[\w\W]+> bubbleType = special.delegateType || type;
4261 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !rfocusMorph.test( bubbleType + type ) ) {
4262 <(\w+)\s*\/?><\/\1><[\w\W]+> cur = cur.parentNode;
4263 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4264 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; cur; cur = cur.parentNode ) {
4265 <(\w+)\s*\/?><\/\1><[\w\W]+> eventPath.push( cur );
4266 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = cur;
4267 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4268  
4269 <(\w+)\s*\/?><\/\1><[\w\W]+> // Only add window if we got to document (e.g., not plain obj or detached DOM)
4270 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp === (elem.ownerDocument || document) ) {
4271 <(\w+)\s*\/?><\/\1><[\w\W]+> eventPath.push( tmp.defaultView || tmp.parentWindow || window );
4272 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4273 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4274  
4275 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fire handlers on the event path
4276 <(\w+)\s*\/?><\/\1><[\w\W]+> i = 0;
4277 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
4278  
4279 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = i > 1 ?
4280 <(\w+)\s*\/?><\/\1><[\w\W]+> bubbleType :
4281 <(\w+)\s*\/?><\/\1><[\w\W]+> special.bindType || type;
4282  
4283 <(\w+)\s*\/?><\/\1><[\w\W]+> // jQuery handler
4284 <(\w+)\s*\/?><\/\1><[\w\W]+> handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" );
4285 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handle ) {
4286 <(\w+)\s*\/?><\/\1><[\w\W]+> handle.apply( cur, data );
4287 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4288  
4289 <(\w+)\s*\/?><\/\1><[\w\W]+> // Native handler
4290 <(\w+)\s*\/?><\/\1><[\w\W]+> handle = ontype && cur[ ontype ];
4291 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
4292 <(\w+)\s*\/?><\/\1><[\w\W]+> event.result = handle.apply( cur, data );
4293 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.result === false ) {
4294 <(\w+)\s*\/?><\/\1><[\w\W]+> event.preventDefault();
4295 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4296 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4297 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4298 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = type;
4299  
4300 <(\w+)\s*\/?><\/\1><[\w\W]+> // If nobody prevented the default action, do it now
4301 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !onlyHandlers && !event.isDefaultPrevented() ) {
4302  
4303 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
4304 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.acceptData( elem ) ) {
4305  
4306 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call a native DOM method on the target with the same name name as the event.
4307 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't do default actions on window, that's where global variables be (#6170)
4308 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
4309  
4310 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't re-trigger an onFOO event when we call its FOO() method
4311 <(\w+)\s*\/?><\/\1><[\w\W]+> tmp = elem[ ontype ];
4312  
4313 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp ) {
4314 <(\w+)\s*\/?><\/\1><[\w\W]+> elem[ ontype ] = null;
4315 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4316  
4317 <(\w+)\s*\/?><\/\1><[\w\W]+> // Prevent re-triggering of the same event, since we already bubbled it above
4318 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.triggered = type;
4319 <(\w+)\s*\/?><\/\1><[\w\W]+> elem[ type ]();
4320 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.triggered = undefined;
4321  
4322 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( tmp ) {
4323 <(\w+)\s*\/?><\/\1><[\w\W]+> elem[ ontype ] = tmp;
4324 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4325 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4326 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4327 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4328  
4329 <(\w+)\s*\/?><\/\1><[\w\W]+> return event.result;
4330 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4331  
4332 <(\w+)\s*\/?><\/\1><[\w\W]+> dispatch: function( event ) {
4333  
4334 <(\w+)\s*\/?><\/\1><[\w\W]+> // Make a writable jQuery.Event from the native event object
4335 <(\w+)\s*\/?><\/\1><[\w\W]+> event = jQuery.event.fix( event );
4336  
4337 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, j, ret, matched, handleObj,
4338 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue = [],
4339 <(\w+)\s*\/?><\/\1><[\w\W]+> args = slice.call( arguments ),
4340 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [],
4341 <(\w+)\s*\/?><\/\1><[\w\W]+> special = jQuery.event.special[ event.type ] || {};
4342  
4343 <(\w+)\s*\/?><\/\1><[\w\W]+> // Use the fix-ed jQuery.Event rather than the (read-only) native event
4344 <(\w+)\s*\/?><\/\1><[\w\W]+> args[0] = event;
4345 <(\w+)\s*\/?><\/\1><[\w\W]+> event.delegateTarget = this;
4346  
4347 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call the preDispatch hook for the mapped type, and let it bail if desired
4348 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
4349 <(\w+)\s*\/?><\/\1><[\w\W]+> return;
4350 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4351  
4352 <(\w+)\s*\/?><\/\1><[\w\W]+> // Determine handlers
4353 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue = jQuery.event.handlers.call( this, event, handlers );
4354  
4355 <(\w+)\s*\/?><\/\1><[\w\W]+> // Run delegates first; they may want to stop propagation beneath us
4356 <(\w+)\s*\/?><\/\1><[\w\W]+> i = 0;
4357 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
4358 <(\w+)\s*\/?><\/\1><[\w\W]+> event.currentTarget = matched.elem;
4359  
4360 <(\w+)\s*\/?><\/\1><[\w\W]+> j = 0;
4361 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
4362  
4363 <(\w+)\s*\/?><\/\1><[\w\W]+> // Triggered event must either 1) have no namespace, or
4364 <(\w+)\s*\/?><\/\1><[\w\W]+> // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
4365 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
4366  
4367 <(\w+)\s*\/?><\/\1><[\w\W]+> event.handleObj = handleObj;
4368 <(\w+)\s*\/?><\/\1><[\w\W]+> event.data = handleObj.data;
4369  
4370 <(\w+)\s*\/?><\/\1><[\w\W]+> ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
4371 <(\w+)\s*\/?><\/\1><[\w\W]+> .apply( matched.elem, args );
4372  
4373 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( ret !== undefined ) {
4374 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( (event.result = ret) === false ) {
4375 <(\w+)\s*\/?><\/\1><[\w\W]+> event.preventDefault();
4376 <(\w+)\s*\/?><\/\1><[\w\W]+> event.stopPropagation();
4377 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4378 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4379 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4380 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4381 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4382  
4383 <(\w+)\s*\/?><\/\1><[\w\W]+> // Call the postDispatch hook for the mapped type
4384 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( special.postDispatch ) {
4385 <(\w+)\s*\/?><\/\1><[\w\W]+> special.postDispatch.call( this, event );
4386 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4387  
4388 <(\w+)\s*\/?><\/\1><[\w\W]+> return event.result;
4389 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4390  
4391 <(\w+)\s*\/?><\/\1><[\w\W]+> handlers: function( event, handlers ) {
4392 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, matches, sel, handleObj,
4393 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue = [],
4394 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateCount = handlers.delegateCount,
4395 <(\w+)\s*\/?><\/\1><[\w\W]+> cur = event.target;
4396  
4397 <(\w+)\s*\/?><\/\1><[\w\W]+> // Find delegate handlers
4398 <(\w+)\s*\/?><\/\1><[\w\W]+> // Black-hole SVG <use> instance trees (#13180)
4399 <(\w+)\s*\/?><\/\1><[\w\W]+> // Avoid non-left-click bubbling in Firefox (#3861)
4400 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
4401  
4402 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( ; cur !== this; cur = cur.parentNode || this ) {
4403  
4404 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
4405 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( cur.disabled !== true || event.type !== "click" ) {
4406 <(\w+)\s*\/?><\/\1><[\w\W]+> matches = [];
4407 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( i = 0; i < delegateCount; i++ ) {
4408 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = handlers[ i ];
4409  
4410 <(\w+)\s*\/?><\/\1><[\w\W]+> // Don't conflict with Object.prototype properties (#13203)
4411 <(\w+)\s*\/?><\/\1><[\w\W]+> sel = handleObj.selector + " ";
4412  
4413 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( matches[ sel ] === undefined ) {
4414 <(\w+)\s*\/?><\/\1><[\w\W]+> matches[ sel ] = handleObj.needsContext ?
4415 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( sel, this ).index( cur ) >= 0 :
4416 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.find( sel, this, null, [ cur ] ).length;
4417 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4418 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( matches[ sel ] ) {
4419 <(\w+)\s*\/?><\/\1><[\w\W]+> matches.push( handleObj );
4420 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4421 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4422 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( matches.length ) {
4423 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue.push({ elem: cur, handlers: matches });
4424 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4425 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4426 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4427 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4428  
4429 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add the remaining (directly-bound) handlers
4430 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( delegateCount < handlers.length ) {
4431 <(\w+)\s*\/?><\/\1><[\w\W]+> handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
4432 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4433  
4434 <(\w+)\s*\/?><\/\1><[\w\W]+> return handlerQueue;
4435 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4436  
4437 <(\w+)\s*\/?><\/\1><[\w\W]+> // Includes some event props shared by KeyEvent and MouseEvent
4438 <(\w+)\s*\/?><\/\1><[\w\W]+> props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
4439  
4440 <(\w+)\s*\/?><\/\1><[\w\W]+> fixHooks: {},
4441  
4442 <(\w+)\s*\/?><\/\1><[\w\W]+> keyHooks: {
4443 <(\w+)\s*\/?><\/\1><[\w\W]+> props: "char charCode key keyCode".split(" "),
4444 <(\w+)\s*\/?><\/\1><[\w\W]+> filter: function( event, original ) {
4445  
4446 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add which for key events
4447 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.which == null ) {
4448 <(\w+)\s*\/?><\/\1><[\w\W]+> event.which = original.charCode != null ? original.charCode : original.keyCode;
4449 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4450  
4451 <(\w+)\s*\/?><\/\1><[\w\W]+> return event;
4452 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4453 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4454  
4455 <(\w+)\s*\/?><\/\1><[\w\W]+> mouseHooks: {
4456 <(\w+)\s*\/?><\/\1><[\w\W]+> props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
4457 <(\w+)\s*\/?><\/\1><[\w\W]+> filter: function( event, original ) {
4458 <(\w+)\s*\/?><\/\1><[\w\W]+> var eventDoc, doc, body,
4459 <(\w+)\s*\/?><\/\1><[\w\W]+> button = original.button;
4460  
4461 <(\w+)\s*\/?><\/\1><[\w\W]+> // Calculate pageX/Y if missing and clientX/Y available
4462 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.pageX == null && original.clientX != null ) {
4463 <(\w+)\s*\/?><\/\1><[\w\W]+> eventDoc = event.target.ownerDocument || document;
4464 <(\w+)\s*\/?><\/\1><[\w\W]+> doc = eventDoc.documentElement;
4465 <(\w+)\s*\/?><\/\1><[\w\W]+> body = eventDoc.body;
4466  
4467 <(\w+)\s*\/?><\/\1><[\w\W]+> event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
4468 <(\w+)\s*\/?><\/\1><[\w\W]+> event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
4469 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4470  
4471 <(\w+)\s*\/?><\/\1><[\w\W]+> // Add which for click: 1 === left; 2 === middle; 3 === right
4472 <(\w+)\s*\/?><\/\1><[\w\W]+> // Note: button is not normalized, so don't use it
4473 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.which && button !== undefined ) {
4474 <(\w+)\s*\/?><\/\1><[\w\W]+> event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
4475 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4476  
4477 <(\w+)\s*\/?><\/\1><[\w\W]+> return event;
4478 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4479 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4480  
4481 <(\w+)\s*\/?><\/\1><[\w\W]+> fix: function( event ) {
4482 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event[ jQuery.expando ] ) {
4483 <(\w+)\s*\/?><\/\1><[\w\W]+> return event;
4484 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4485  
4486 <(\w+)\s*\/?><\/\1><[\w\W]+> // Create a writable copy of the event object and normalize some properties
4487 <(\w+)\s*\/?><\/\1><[\w\W]+> var i, prop, copy,
4488 <(\w+)\s*\/?><\/\1><[\w\W]+> type = event.type,
4489 <(\w+)\s*\/?><\/\1><[\w\W]+> originalEvent = event,
4490 <(\w+)\s*\/?><\/\1><[\w\W]+> fixHook = this.fixHooks[ type ];
4491  
4492 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !fixHook ) {
4493 <(\w+)\s*\/?><\/\1><[\w\W]+> this.fixHooks[ type ] = fixHook =
4494 <(\w+)\s*\/?><\/\1><[\w\W]+> rmouseEvent.test( type ) ? this.mouseHooks :
4495 <(\w+)\s*\/?><\/\1><[\w\W]+> rkeyEvent.test( type ) ? this.keyHooks :
4496 <(\w+)\s*\/?><\/\1><[\w\W]+> {};
4497 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4498 <(\w+)\s*\/?><\/\1><[\w\W]+> copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
4499  
4500 <(\w+)\s*\/?><\/\1><[\w\W]+> event = new jQuery.Event( originalEvent );
4501  
4502 <(\w+)\s*\/?><\/\1><[\w\W]+> i = copy.length;
4503 <(\w+)\s*\/?><\/\1><[\w\W]+> while ( i-- ) {
4504 <(\w+)\s*\/?><\/\1><[\w\W]+> prop = copy[ i ];
4505 <(\w+)\s*\/?><\/\1><[\w\W]+> event[ prop ] = originalEvent[ prop ];
4506 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4507  
4508 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Cordova 2.5 (WebKit) (#13255)
4509 <(\w+)\s*\/?><\/\1><[\w\W]+> // All events should have a target; Cordova deviceready doesn't
4510 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !event.target ) {
4511 <(\w+)\s*\/?><\/\1><[\w\W]+> event.target = document;
4512 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4513  
4514 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Safari 6.0+, Chrome < 28
4515 <(\w+)\s*\/?><\/\1><[\w\W]+> // Target should not be a text node (#504, #13143)
4516 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.target.nodeType === 3 ) {
4517 <(\w+)\s*\/?><\/\1><[\w\W]+> event.target = event.target.parentNode;
4518 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4519  
4520 <(\w+)\s*\/?><\/\1><[\w\W]+> return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
4521 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4522  
4523 <(\w+)\s*\/?><\/\1><[\w\W]+> special: {
4524 <(\w+)\s*\/?><\/\1><[\w\W]+> load: {
4525 <(\w+)\s*\/?><\/\1><[\w\W]+> // Prevent triggered image.load events from bubbling to window.load
4526 <(\w+)\s*\/?><\/\1><[\w\W]+> noBubble: true
4527 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4528 <(\w+)\s*\/?><\/\1><[\w\W]+> focus: {
4529 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fire native event if possible so blur/focus sequence is correct
4530 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function() {
4531 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this !== safeActiveElement() && this.focus ) {
4532 <(\w+)\s*\/?><\/\1><[\w\W]+> this.focus();
4533 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4534 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4535 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4536 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateType: "focusin"
4537 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4538 <(\w+)\s*\/?><\/\1><[\w\W]+> blur: {
4539 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function() {
4540 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this === safeActiveElement() && this.blur ) {
4541 <(\w+)\s*\/?><\/\1><[\w\W]+> this.blur();
4542 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4543 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4544 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4545 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateType: "focusout"
4546 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4547 <(\w+)\s*\/?><\/\1><[\w\W]+> click: {
4548 <(\w+)\s*\/?><\/\1><[\w\W]+> // For checkbox, fire native event so checked state will be right
4549 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function() {
4550 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
4551 <(\w+)\s*\/?><\/\1><[\w\W]+> this.click();
4552 <(\w+)\s*\/?><\/\1><[\w\W]+> return false;
4553 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4554 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4555  
4556 <(\w+)\s*\/?><\/\1><[\w\W]+> // For cross-browser consistency, don't fire native .click() on links
4557 <(\w+)\s*\/?><\/\1><[\w\W]+> _default: function( event ) {
4558 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.nodeName( event.target, "a" );
4559 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4560 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4561  
4562 <(\w+)\s*\/?><\/\1><[\w\W]+> beforeunload: {
4563 <(\w+)\s*\/?><\/\1><[\w\W]+> postDispatch: function( event ) {
4564  
4565 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Firefox 20+
4566 <(\w+)\s*\/?><\/\1><[\w\W]+> // Firefox doesn't alert if the returnValue field is not set.
4567 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( event.result !== undefined ) {
4568 <(\w+)\s*\/?><\/\1><[\w\W]+> event.originalEvent.returnValue = event.result;
4569 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4570 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4571 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4572 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4573  
4574 <(\w+)\s*\/?><\/\1><[\w\W]+> simulate: function( type, elem, event, bubble ) {
4575 <(\w+)\s*\/?><\/\1><[\w\W]+> // Piggyback on a donor event to simulate a different one.
4576 <(\w+)\s*\/?><\/\1><[\w\W]+> // Fake originalEvent to avoid donor's stopPropagation, but if the
4577 <(\w+)\s*\/?><\/\1><[\w\W]+> // simulated event prevents default then we do the same on the donor.
4578 <(\w+)\s*\/?><\/\1><[\w\W]+> var e = jQuery.extend(
4579 <(\w+)\s*\/?><\/\1><[\w\W]+> new jQuery.Event(),
4580 <(\w+)\s*\/?><\/\1><[\w\W]+> event,
4581 <(\w+)\s*\/?><\/\1><[\w\W]+> {
4582 <(\w+)\s*\/?><\/\1><[\w\W]+> type: type,
4583 <(\w+)\s*\/?><\/\1><[\w\W]+> isSimulated: true,
4584 <(\w+)\s*\/?><\/\1><[\w\W]+> originalEvent: {}
4585 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4586 <(\w+)\s*\/?><\/\1><[\w\W]+> );
4587 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( bubble ) {
4588 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.trigger( e, null, elem );
4589 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4590 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.dispatch.call( elem, e );
4591 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4592 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( e.isDefaultPrevented() ) {
4593 <(\w+)\s*\/?><\/\1><[\w\W]+> event.preventDefault();
4594 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4595 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4596 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4597  
4598 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.removeEvent = function( elem, type, handle ) {
4599 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem.removeEventListener ) {
4600 <(\w+)\s*\/?><\/\1><[\w\W]+> elem.removeEventListener( type, handle, false );
4601 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4602 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4603  
4604 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.Event = function( src, props ) {
4605 <(\w+)\s*\/?><\/\1><[\w\W]+> // Allow instantiation without the 'new' keyword
4606 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !(this instanceof jQuery.Event) ) {
4607 <(\w+)\s*\/?><\/\1><[\w\W]+> return new jQuery.Event( src, props );
4608 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4609  
4610 <(\w+)\s*\/?><\/\1><[\w\W]+> // Event object
4611 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( src && src.type ) {
4612 <(\w+)\s*\/?><\/\1><[\w\W]+> this.originalEvent = src;
4613 <(\w+)\s*\/?><\/\1><[\w\W]+> this.type = src.type;
4614  
4615 <(\w+)\s*\/?><\/\1><[\w\W]+> // Events bubbling up the document may have been marked as prevented
4616 <(\w+)\s*\/?><\/\1><[\w\W]+> // by a handler lower down the tree; reflect the correct value.
4617 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isDefaultPrevented = src.defaultPrevented ||
4618 <(\w+)\s*\/?><\/\1><[\w\W]+> // Support: Android < 4.0
4619 <(\w+)\s*\/?><\/\1><[\w\W]+> src.defaultPrevented === undefined &&
4620 <(\w+)\s*\/?><\/\1><[\w\W]+> src.getPreventDefault && src.getPreventDefault() ?
4621 <(\w+)\s*\/?><\/\1><[\w\W]+> returnTrue :
4622 <(\w+)\s*\/?><\/\1><[\w\W]+> returnFalse;
4623  
4624 <(\w+)\s*\/?><\/\1><[\w\W]+> // Event type
4625 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4626 <(\w+)\s*\/?><\/\1><[\w\W]+> this.type = src;
4627 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4628  
4629 <(\w+)\s*\/?><\/\1><[\w\W]+> // Put explicitly provided properties onto the event object
4630 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( props ) {
4631 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.extend( this, props );
4632 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4633  
4634 <(\w+)\s*\/?><\/\1><[\w\W]+> // Create a timestamp if incoming event doesn't have one
4635 <(\w+)\s*\/?><\/\1><[\w\W]+> this.timeStamp = src && src.timeStamp || jQuery.now();
4636  
4637 <(\w+)\s*\/?><\/\1><[\w\W]+> // Mark it as fixed
4638 <(\w+)\s*\/?><\/\1><[\w\W]+> this[ jQuery.expando ] = true;
4639 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4640  
4641 <(\w+)\s*\/?><\/\1><[\w\W]+>// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
4642 <(\w+)\s*\/?><\/\1><[\w\W]+>// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
4643 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.Event.prototype = {
4644 <(\w+)\s*\/?><\/\1><[\w\W]+> isDefaultPrevented: returnFalse,
4645 <(\w+)\s*\/?><\/\1><[\w\W]+> isPropagationStopped: returnFalse,
4646 <(\w+)\s*\/?><\/\1><[\w\W]+> isImmediatePropagationStopped: returnFalse,
4647  
4648 <(\w+)\s*\/?><\/\1><[\w\W]+> preventDefault: function() {
4649 <(\w+)\s*\/?><\/\1><[\w\W]+> var e = this.originalEvent;
4650  
4651 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isDefaultPrevented = returnTrue;
4652  
4653 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( e && e.preventDefault ) {
4654 <(\w+)\s*\/?><\/\1><[\w\W]+> e.preventDefault();
4655 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4656 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4657 <(\w+)\s*\/?><\/\1><[\w\W]+> stopPropagation: function() {
4658 <(\w+)\s*\/?><\/\1><[\w\W]+> var e = this.originalEvent;
4659  
4660 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isPropagationStopped = returnTrue;
4661  
4662 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( e && e.stopPropagation ) {
4663 <(\w+)\s*\/?><\/\1><[\w\W]+> e.stopPropagation();
4664 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4665 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4666 <(\w+)\s*\/?><\/\1><[\w\W]+> stopImmediatePropagation: function() {
4667 <(\w+)\s*\/?><\/\1><[\w\W]+> this.isImmediatePropagationStopped = returnTrue;
4668 <(\w+)\s*\/?><\/\1><[\w\W]+> this.stopPropagation();
4669 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4670 <(\w+)\s*\/?><\/\1><[\w\W]+>};
4671  
4672 <(\w+)\s*\/?><\/\1><[\w\W]+>// Create mouseenter/leave events using mouseover/out and event-time checks
4673 <(\w+)\s*\/?><\/\1><[\w\W]+>// Support: Chrome 15+
4674 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.each({
4675 <(\w+)\s*\/?><\/\1><[\w\W]+> mouseenter: "mouseover",
4676 <(\w+)\s*\/?><\/\1><[\w\W]+> mouseleave: "mouseout"
4677 <(\w+)\s*\/?><\/\1><[\w\W]+>}, function( orig, fix ) {
4678 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.special[ orig ] = {
4679 <(\w+)\s*\/?><\/\1><[\w\W]+> delegateType: fix,
4680 <(\w+)\s*\/?><\/\1><[\w\W]+> bindType: fix,
4681  
4682 <(\w+)\s*\/?><\/\1><[\w\W]+> handle: function( event ) {
4683 <(\w+)\s*\/?><\/\1><[\w\W]+> var ret,
4684 <(\w+)\s*\/?><\/\1><[\w\W]+> target = this,
4685 <(\w+)\s*\/?><\/\1><[\w\W]+> related = event.relatedTarget,
4686 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = event.handleObj;
4687  
4688 <(\w+)\s*\/?><\/\1><[\w\W]+> // For mousenter/leave call the handler if related is outside the target.
4689 <(\w+)\s*\/?><\/\1><[\w\W]+> // NB: No relatedTarget if the mouse left/entered the browser window
4690 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
4691 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = handleObj.origType;
4692 <(\w+)\s*\/?><\/\1><[\w\W]+> ret = handleObj.handler.apply( this, arguments );
4693 <(\w+)\s*\/?><\/\1><[\w\W]+> event.type = fix;
4694 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4695 <(\w+)\s*\/?><\/\1><[\w\W]+> return ret;
4696 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4697 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4698 <(\w+)\s*\/?><\/\1><[\w\W]+>});
4699  
4700 <(\w+)\s*\/?><\/\1><[\w\W]+>// Create "bubbling" focus and blur events
4701 <(\w+)\s*\/?><\/\1><[\w\W]+>// Support: Firefox, Chrome, Safari
4702 <(\w+)\s*\/?><\/\1><[\w\W]+>if ( !support.focusinBubbles ) {
4703 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
4704  
4705 <(\w+)\s*\/?><\/\1><[\w\W]+> // Attach a single capturing handler on the document while someone wants focusin/focusout
4706 <(\w+)\s*\/?><\/\1><[\w\W]+> var handler = function( event ) {
4707 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
4708 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4709  
4710 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.special[ fix ] = {
4711 <(\w+)\s*\/?><\/\1><[\w\W]+> setup: function() {
4712 <(\w+)\s*\/?><\/\1><[\w\W]+> var doc = this.ownerDocument || this,
4713 <(\w+)\s*\/?><\/\1><[\w\W]+> attaches = data_priv.access( doc, fix );
4714  
4715 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !attaches ) {
4716 <(\w+)\s*\/?><\/\1><[\w\W]+> doc.addEventListener( orig, handler, true );
4717 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4718 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.access( doc, fix, ( attaches || 0 ) + 1 );
4719 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4720 <(\w+)\s*\/?><\/\1><[\w\W]+> teardown: function() {
4721 <(\w+)\s*\/?><\/\1><[\w\W]+> var doc = this.ownerDocument || this,
4722 <(\w+)\s*\/?><\/\1><[\w\W]+> attaches = data_priv.access( doc, fix ) - 1;
4723  
4724 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( !attaches ) {
4725 <(\w+)\s*\/?><\/\1><[\w\W]+> doc.removeEventListener( orig, handler, true );
4726 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.remove( doc, fix );
4727  
4728 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4729 <(\w+)\s*\/?><\/\1><[\w\W]+> data_priv.access( doc, fix, attaches );
4730 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4731 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4732 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4733 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4734 <(\w+)\s*\/?><\/\1><[\w\W]+>}
4735  
4736 <(\w+)\s*\/?><\/\1><[\w\W]+>jQuery.fn.extend({
4737  
4738 <(\w+)\s*\/?><\/\1><[\w\W]+> on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
4739 <(\w+)\s*\/?><\/\1><[\w\W]+> var origFn, type;
4740  
4741 <(\w+)\s*\/?><\/\1><[\w\W]+> // Types can be a map of types/handlers
4742 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof types === "object" ) {
4743 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types-Object, selector, data )
4744 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof selector !== "string" ) {
4745 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types-Object, data )
4746 <(\w+)\s*\/?><\/\1><[\w\W]+> data = data || selector;
4747 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = undefined;
4748 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4749 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( type in types ) {
4750 <(\w+)\s*\/?><\/\1><[\w\W]+> this.on( type, selector, data, types[ type ], one );
4751 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4752 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4753 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4754  
4755 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( data == null && fn == null ) {
4756 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types, fn )
4757 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = selector;
4758 <(\w+)\s*\/?><\/\1><[\w\W]+> data = selector = undefined;
4759 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( fn == null ) {
4760 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof selector === "string" ) {
4761 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types, selector, fn )
4762 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = data;
4763 <(\w+)\s*\/?><\/\1><[\w\W]+> data = undefined;
4764 <(\w+)\s*\/?><\/\1><[\w\W]+> } else {
4765 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types, data, fn )
4766 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = data;
4767 <(\w+)\s*\/?><\/\1><[\w\W]+> data = selector;
4768 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = undefined;
4769 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4770 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4771 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( fn === false ) {
4772 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = returnFalse;
4773 <(\w+)\s*\/?><\/\1><[\w\W]+> } else if ( !fn ) {
4774 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4775 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4776  
4777 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( one === 1 ) {
4778 <(\w+)\s*\/?><\/\1><[\w\W]+> origFn = fn;
4779 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = function( event ) {
4780 <(\w+)\s*\/?><\/\1><[\w\W]+> // Can use an empty set, since event contains the info
4781 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery().off( event );
4782 <(\w+)\s*\/?><\/\1><[\w\W]+> return origFn.apply( this, arguments );
4783 <(\w+)\s*\/?><\/\1><[\w\W]+> };
4784 <(\w+)\s*\/?><\/\1><[\w\W]+> // Use same guid so caller can remove using origFn
4785 <(\w+)\s*\/?><\/\1><[\w\W]+> fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
4786 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4787 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each( function() {
4788 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.add( this, types, fn, data, selector );
4789 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4790 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4791 <(\w+)\s*\/?><\/\1><[\w\W]+> one: function( types, selector, data, fn ) {
4792 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.on( types, selector, data, fn, 1 );
4793 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4794 <(\w+)\s*\/?><\/\1><[\w\W]+> off: function( types, selector, fn ) {
4795 <(\w+)\s*\/?><\/\1><[\w\W]+> var handleObj, type;
4796 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( types && types.preventDefault && types.handleObj ) {
4797 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( event ) dispatched jQuery.Event
4798 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj = types.handleObj;
4799 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery( types.delegateTarget ).off(
4800 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
4801 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.selector,
4802 <(\w+)\s*\/?><\/\1><[\w\W]+> handleObj.handler
4803 <(\w+)\s*\/?><\/\1><[\w\W]+> );
4804 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4805 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4806 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( typeof types === "object" ) {
4807 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types-object [, selector] )
4808 <(\w+)\s*\/?><\/\1><[\w\W]+> for ( type in types ) {
4809 <(\w+)\s*\/?><\/\1><[\w\W]+> this.off( type, selector, types[ type ] );
4810 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4811 <(\w+)\s*\/?><\/\1><[\w\W]+> return this;
4812 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4813 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( selector === false || typeof selector === "function" ) {
4814 <(\w+)\s*\/?><\/\1><[\w\W]+> // ( types [, fn] )
4815 <(\w+)\s*\/?><\/\1><[\w\W]+> fn = selector;
4816 <(\w+)\s*\/?><\/\1><[\w\W]+> selector = undefined;
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]+> }
4821 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
4822 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.remove( this, types, fn, selector );
4823 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4824 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4825  
4826 <(\w+)\s*\/?><\/\1><[\w\W]+> trigger: function( type, data ) {
4827 <(\w+)\s*\/?><\/\1><[\w\W]+> return this.each(function() {
4828 <(\w+)\s*\/?><\/\1><[\w\W]+> jQuery.event.trigger( type, data, this );
4829 <(\w+)\s*\/?><\/\1><[\w\W]+> });
4830 <(\w+)\s*\/?><\/\1><[\w\W]+> },
4831 <(\w+)\s*\/?><\/\1><[\w\W]+> triggerHandler: function( type, data ) {
4832 <(\w+)\s*\/?><\/\1><[\w\W]+> var elem = this[0];
4833 <(\w+)\s*\/?><\/\1><[\w\W]+> if ( elem ) {
4834 <(\w+)\s*\/?><\/\1><[\w\W]+> return jQuery.event.trigger( type, data, elem, true );
4835 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4836 <(\w+)\s*\/?><\/\1><[\w\W]+> }
4837 <(\w+)\s*\/?><\/\1><[\w\W]+>});
4838  
4839  
4840 <(\w+)\s*\/?><\/\1><[\w\W]+>var
4841 <(\w+)\s*\/?><\/\1><[\w\W]+> rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
4842 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^> rtagName = /<([\w:]+)/,
4843 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/ rhtml = /<|&#?\w+;/,
4844 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/ rnoInnerhtml = /<(?:script|style|link)/i,
4845 <(\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
4846 <(\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,
4847 <(\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,
4848 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ rscriptTypeMasked = /^true\/(.*)/,
4849 <(\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,
4850  
4851 <(\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)
4852 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ wrapMap = {
4853  
4854 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE 9
4855 <(\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>" ],
4856  
4857 <(\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>" ],
4858 <(\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>" ],
4859 <(\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>" ],
4860 <(\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>" ],
4861  
4862 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ _default: [ 0, "", "" ]
4863 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
4864  
4865 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: IE 9
4866 <(\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;
4867  
4868 <(\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;
4869 <(\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;
4870  
4871 <(\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
4872 <(\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
4873 <(\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 ) {
4874 <(\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" ) &&
4875 <(\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" ) ?
4876  
4877 <(\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] ||
4878 <(\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") ) :
4879 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem;
4880 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4881  
4882 <(\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
4883 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function disableScript( elem ) {
4884 <(\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;
4885 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem;
4886 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4887 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function restoreScript( elem ) {
4888 <(\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 );
4889  
4890 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( match ) {
4891 <(\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 ];
4892 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
4893 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.removeAttribute("type");
4894 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4895  
4896 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem;
4897 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4898  
4899 <(\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
4900 <(\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 ) {
4901 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var i = 0,
4902 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = elems.length;
4903  
4904 <(\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++ ) {
4905 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ data_priv.set(
4906 <(\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" )
4907 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ );
4908 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4909 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4910  
4911 <(\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 ) {
4912 <(\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;
4913  
4914 <(\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 ) {
4915 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
4916 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4917  
4918 <(\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.
4919 <(\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 ) ) {
4920 <(\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 );
4921 <(\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 );
4922 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ events = pdataOld.events;
4923  
4924 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( events ) {
4925 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ delete pdataCur.handle;
4926 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ pdataCur.events = {};
4927  
4928 <(\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 ) {
4929 <(\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++ ) {
4930 <(\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 ] );
4931 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4932 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
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)/ }
4935  
4936 <(\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
4937 <(\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 ) ) {
4938 <(\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 );
4939 <(\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 );
4940  
4941 <(\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 );
4942 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4943 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4944  
4945 <(\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 ) {
4946 <(\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 || "*" ) :
4947 <(\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 || "*" ) :
4948 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ [];
4949  
4950 <(\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 ) ?
4951 <(\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 ) :
4952 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret;
4953 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4954  
4955 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: IE >= 9
4956 <(\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 ) {
4957 <(\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();
4958  
4959 <(\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.
4960 <(\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 ) ) {
4961 <(\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;
4962  
4963 <(\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
4964 <(\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" ) {
4965 <(\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;
4966 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4967 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
4968  
4969 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.extend({
4970 <(\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 ) {
4971 <(\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,
4972 <(\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 ),
4973 <(\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 );
4974  
4975 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE >= 9
4976 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fix Cloning issues
4977 <(\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 ) &&
4978 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ !jQuery.isXMLDoc( elem ) ) {
4979  
4980 <(\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
4981 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ destElements = getAll( clone );
4982 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ srcElements = getAll( elem );
4983  
4984 <(\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++ ) {
4985 <(\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 ] );
4986 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4987 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4988  
4989 <(\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
4990 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( dataAndEvents ) {
4991 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( deepDataAndEvents ) {
4992 <(\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 );
4993 <(\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 );
4994  
4995 <(\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++ ) {
4996 <(\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 ] );
4997 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
4998 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
4999 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cloneCopyEvent( elem, clone );
5000 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5001 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5002  
5003 <(\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
5004 <(\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" );
5005 <(\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 ) {
5006 <(\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" ) );
5007 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5008  
5009 <(\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
5010 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return clone;
5011 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5012  
5013 <(\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 ) {
5014 <(\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,
5015 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fragment = context.createDocumentFragment(),
5016 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ nodes = [],
5017 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0,
5018 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = elems.length;
5019  
5020 <(\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++ ) {
5021 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = elems[ i ];
5022  
5023 <(\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 ) {
5024  
5025 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Add nodes directly
5026 <(\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" ) {
5027 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: QtWebKit
5028 <(\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
5029 <(\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 );
5030  
5031 <(\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
5032 <(\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 ) ) {
5033 <(\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 ) );
5034  
5035 <(\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
5036 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5037 <(\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") );
5038  
5039 <(\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
5040 <(\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();
5041 <(\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;
5042 <(\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 ];
5043  
5044 <(\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
5045 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ j = wrap[ 0 ];
5046 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ while ( j-- ) {
5047 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp = tmp.lastChild;
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)/ // Support: QtWebKit
5051 <(\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
5052 <(\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 );
5053  
5054 <(\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
5055 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp = fragment.firstChild;
5056  
5057 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fixes #12346
5058 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Webkit, IE
5059 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ tmp.textContent = "";
5060 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5061 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5062 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5063  
5064 <(\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
5065 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fragment.textContent = "";
5066  
5067 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5068 <(\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++ ]) ) {
5069  
5070 <(\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
5071 <(\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
5072 <(\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 ) {
5073 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ continue;
5074 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5075  
5076 <(\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 );
5077  
5078 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Append to fragment
5079 <(\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" );
5080  
5081 <(\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
5082 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( contains ) {
5083 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ setGlobalEval( tmp );
5084 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5085  
5086 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Capture executables
5087 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( scripts ) {
5088 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ j = 0;
5089 <(\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++ ]) ) {
5090 <(\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 || "" ) ) {
5091 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ scripts.push( elem );
5092 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5093 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5094 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
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)/ return fragment;
5098 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5099  
5100 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cleanData: function( elems ) {
5101 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var data, elem, events, type, key, j,
5102 <(\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,
5103 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5104  
5105 <(\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++ ) {
5106 <(\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 ) ) {
5107 <(\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 ];
5108  
5109 <(\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 ]) ) {
5110 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ events = Object.keys( data.events || {} );
5111 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( events.length ) {
5112 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ for ( j = 0; (type = events[j]) !== undefined; j++ ) {
5113 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( special[ type ] ) {
5114 <(\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 );
5115  
5116 <(\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
5117 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5118 <(\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 );
5119 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5120 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5121 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5122 <(\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 ] ) {
5123 <(\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
5124 <(\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 ];
5125 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5126 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5127 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5128 <(\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
5129 <(\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 ] ];
5130 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5131 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5132 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
5133  
5134 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.fn.extend({
5135 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ text: function( value ) {
5136 <(\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 ) {
5137 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return value === undefined ?
5138 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.text( this ) :
5139 <(\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() {
5140 <(\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 ) {
5141 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.textContent = value;
5142 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5143 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5144 <(\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 );
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)/ append: function() {
5148 <(\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 ) {
5149 <(\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 ) {
5150 <(\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 );
5151 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ target.appendChild( elem );
5152 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5153 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5154 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5155  
5156 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ prepend: function() {
5157 <(\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 ) {
5158 <(\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 ) {
5159 <(\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 );
5160 <(\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 );
5161 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5162 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5163 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5164  
5165 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ before: function() {
5166 <(\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 ) {
5167 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.parentNode ) {
5168 <(\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 );
5169 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5170 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5171 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5172  
5173 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ after: function() {
5174 <(\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 ) {
5175 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( this.parentNode ) {
5176 <(\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 );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5180  
5181 <(\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 */ ) {
5182 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elem,
5183 <(\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,
5184 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5185  
5186 <(\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++ ) {
5187 <(\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 ) {
5188 <(\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 ) );
5189 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5190  
5191 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem.parentNode ) {
5192 <(\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 ) ) {
5193 <(\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" ) );
5194 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5195 <(\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 );
5196 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5197 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5198  
5199 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
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)/ empty: function() {
5203 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elem,
5204 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5205  
5206 <(\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++ ) {
5207 <(\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 ) {
5208  
5209 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Prevent memory leaks
5210 <(\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 ) );
5211  
5212 <(\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
5213 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.textContent = "";
5214 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5215 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5216  
5217 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
5218 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5219  
5220 <(\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 ) {
5221 <(\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;
5222 <(\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;
5223  
5224 <(\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() {
5225 <(\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 );
5226 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5227 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5228  
5229 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ html: function( value ) {
5230 <(\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 ) {
5231 <(\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 ] || {},
5232 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0,
5233 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = this.length;
5234  
5235 <(\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 ) {
5236 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem.innerHTML;
5237 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5238  
5239 <(\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
5240 <(\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 ) &&
5241 <(\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() ] ) {
5242  
5243 <(\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>" );
5244  
5245 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ try {
5246 <(\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++ ) {
5247 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = this[ i ] || {};
5248  
5249 <(\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
5250 <(\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 ) {
5251 <(\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 ) );
5252 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.innerHTML = value;
5253 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5254 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5255  
5256 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = 0;
5257  
5258 <(\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
5259 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } catch( e ) {}
5260 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5261  
5262 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( elem ) {
5263 <(\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 );
5264 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5265 <(\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 );
5266 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5267  
5268 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ replaceWith: function() {
5269 <(\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 ];
5270  
5271 <(\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
5272 <(\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 ) {
5273 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ arg = this.parentNode;
5274  
5275 <(\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 ) );
5276  
5277 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( arg ) {
5278 <(\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 );
5279 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5280 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5281  
5282 <(\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)
5283 <(\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();
5284 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5285  
5286 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ detach: function( selector ) {
5287 <(\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 );
5288 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5289  
5290 <(\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 ) {
5291  
5292 <(\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
5293 <(\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 );
5294  
5295 <(\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,
5296 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0,
5297 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ l = this.length,
5298 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ set = this,
5299 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ iNoClone = l - 1,
5300 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value = args[ 0 ],
5301 <(\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 );
5302  
5303 <(\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
5304 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isFunction ||
5305 <(\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" &&
5306 <(\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 ) ) ) {
5307 <(\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 ) {
5308 <(\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 );
5309 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isFunction ) {
5310 <(\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() );
5311 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5312 <(\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 );
5313 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5314 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5315  
5316 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( l ) {
5317 <(\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 );
5318 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ first = fragment.firstChild;
5319  
5320 <(\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 ) {
5321 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fragment = first;
5322 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5323  
5324 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( first ) {
5325 <(\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 );
5326 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hasScripts = scripts.length;
5327  
5328 <(\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
5329 <(\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).
5330 <(\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++ ) {
5331 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ node = fragment;
5332  
5333 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( i !== iNoClone ) {
5334 <(\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 );
5335  
5336 <(\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
5337 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( hasScripts ) {
5338 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: QtWebKit
5339 <(\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
5340 <(\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" ) );
5341 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5342 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5343  
5344 <(\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 );
5345 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5346  
5347 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( hasScripts ) {
5348 <(\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;
5349  
5350 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Reenable scripts
5351 <(\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 );
5352  
5353 <(\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
5354 <(\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++ ) {
5355 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ node = scripts[ i ];
5356 <(\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 || "" ) &&
5357 <(\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 ) ) {
5358  
5359 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( node.src ) {
5360 <(\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
5361 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( jQuery._evalUrl ) {
5362 <(\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 );
5363 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5364 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5365 <(\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, "" ) );
5366 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5367 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5368 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5369 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5370 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5371 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5372  
5373 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
5374 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5375 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
5376  
5377 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.each({
5378 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ appendTo: "append",
5379 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ prependTo: "prepend",
5380 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ insertBefore: "before",
5381 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ insertAfter: "after",
5382 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ replaceAll: "replaceWith"
5383 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}, function( name, original ) {
5384 <(\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 ) {
5385 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elems,
5386 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = [],
5387 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ insert = jQuery( selector ),
5388 <(\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,
5389 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
5390  
5391 <(\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++ ) {
5392 <(\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 );
5393 <(\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 );
5394  
5395 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: QtWebKit
5396 <(\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
5397 <(\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() );
5398 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5399  
5400 <(\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 );
5401 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
5402 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
5403  
5404  
5405 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var iframe,
5406 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elemdisplay = {};
5407  
5408 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)//**
5409 <(\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
5410 <(\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
5411 <(\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
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)/// Called only from within defaultDisplay
5414 <(\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 ) {
5415 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
5416  
5417 <(\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
5418 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ display = window.getDefaultComputedStyle ?
5419  
5420 <(\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,
5421 <(\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
5422 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ window.getDefaultComputedStyle( elem[ 0 ] ).display : jQuery.css( elem[ 0 ], "display" );
5423  
5424 <(\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,
5425 <(\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
5426 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.detach();
5427  
5428 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return display;
5429 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5430  
5431 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)//**
5432 <(\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
5433 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ * @param {String} nodeName
5434 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ */
5435 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/function defaultDisplay( nodeName ) {
5436 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var doc = document,
5437 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ display = elemdisplay[ nodeName ];
5438  
5439 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !display ) {
5440 <(\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 );
5441  
5442 <(\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
5443 <(\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 ) {
5444  
5445 <(\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
5446 <(\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 );
5447  
5448 <(\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
5449 <(\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;
5450  
5451 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE
5452 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ doc.write();
5453 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ doc.close();
5454  
5455 <(\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 );
5456 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ iframe.detach();
5457 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5458  
5459 <(\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
5460 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elemdisplay[ nodeName ] = display;
5461 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5462  
5463 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return display;
5464 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5465 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var rmargin = (/^margin/);
5466  
5467 <(\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" );
5468  
5469 <(\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 ) {
5470 <(\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 );
5471 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
5472  
5473  
5474  
5475 <(\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 ) {
5476 <(\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,
5477 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style = elem.style;
5478  
5479 <(\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 );
5480  
5481 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE9
5482 <(\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
5483 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5484 <(\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 ];
5485 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5486  
5487 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5488  
5489 <(\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 ) ) {
5490 <(\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 );
5491 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5492  
5493 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: iOS < 6
5494 <(\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"
5495 <(\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
5496 <(\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
5497 <(\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 ) ) {
5498  
5499 <(\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
5500 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ width = style.width;
5501 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ minWidth = style.minWidth;
5502 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ maxWidth = style.maxWidth;
5503  
5504 <(\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
5505 <(\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;
5506 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret = computed.width;
5507  
5508 <(\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
5509 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.width = width;
5510 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.minWidth = minWidth;
5511 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style.maxWidth = maxWidth;
5512 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5513 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5514  
5515 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret !== undefined ?
5516 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: IE
5517 <(\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.
5518 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret + "" :
5519 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ret;
5520 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5521  
5522  
5523 <(\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 ) {
5524 <(\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.
5525 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return {
5526 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ get: function() {
5527 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( conditionFn() ) {
5528 <(\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),
5529 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // remove it.
5530 <(\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.
5531 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ delete this.get;
5532 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
5533 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5534  
5535 <(\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.
5536  
5537 <(\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 );
5538 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5539 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
5540 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5541  
5542  
5543 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/(function() {
5544 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var pixelPositionVal, boxSizingReliableVal,
5545 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Firefox, Android 2.3 (Prefixed box-sizing versions).
5546 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ divReset = "padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;" +
5547 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "-moz-box-sizing:content-box;box-sizing:content-box",
5548 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem = document.documentElement,
5549 <(\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" ),
5550 <(\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" );
5551  
5552 <(\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";
5553 <(\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 = "";
5554 <(\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";
5555  
5556 <(\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;position:absolute;top:0;left:-9999px;" +
5557 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "margin-top:1px";
5558 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ container.appendChild( div );
5559  
5560 <(\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
5561 <(\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.
5562 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ function computePixelPositionAndBoxSizingReliable() {
5563 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Firefox, Android 2.3 (Prefixed box-sizing versions).
5564 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div.style.cssText = "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
5565 <(\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;padding:1px;border:1px;display:block;width:4px;margin-top:1%;" +
5566 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "position:absolute;top:1%";
5567 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.appendChild( container );
5568  
5569 <(\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 );
5570 <(\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%";
5571 <(\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";
5572  
5573 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.removeChild( container );
5574 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5575  
5576 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Use window.getComputedStyle because jsdom on node.js will break without it.
5577 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( window.getComputedStyle ) {
5578 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.extend(support, {
5579 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ pixelPosition: function() {
5580 <(\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
5581 <(\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.
5582 <(\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.
5583 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ computePixelPositionAndBoxSizingReliable();
5584 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return pixelPositionVal;
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)/ boxSizingReliable: function() {
5587 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( boxSizingReliableVal == null ) {
5588 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ computePixelPositionAndBoxSizingReliable();
5589 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5590 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return boxSizingReliableVal;
5591 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5592 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ reliableMarginRight: function() {
5593 <(\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
5594 <(\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
5595 <(\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)
5596 <(\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
5597 <(\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.
5598 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var ret,
5599 <(\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" ) );
5600 <(\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 = divReset;
5601 <(\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";
5602 <(\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";
5603 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.appendChild( container );
5604  
5605 <(\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 );
5606  
5607 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ docElem.removeChild( container );
5608  
5609 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Clean up the div for other support tests.
5610 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ div.innerHTML = "";
5611  
5612 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret;
5613 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5614 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
5615 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5616 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/})();
5617  
5618  
5619 <(\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.
5620 <(\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 ) {
5621 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var ret, name,
5622 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ old = {};
5623  
5624 <(\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
5625 <(\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 ) {
5626 <(\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 ];
5627 <(\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 ];
5628 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5629  
5630 <(\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 || [] );
5631  
5632 <(\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
5633 <(\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 ) {
5634 <(\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 ];
5635 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5636  
5637 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret;
5638 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
5639  
5640  
5641 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/var
5642 <(\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"
5643 <(\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
5644 <(\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]).+)/,
5645 <(\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" ),
5646 <(\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" ),
5647  
5648 <(\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" },
5649 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssNormalTransform = {
5650 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ letterSpacing: 0,
5651 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ fontWeight: 400
5652 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5653  
5654 <(\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" ];
5655  
5656 <(\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
5657 <(\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 ) {
5658  
5659 <(\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
5660 <(\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 ) {
5661 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return name;
5662 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5663  
5664 <(\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
5665 <(\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),
5666 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ origName = name,
5667 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = cssPrefixes.length;
5668  
5669 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ while ( i-- ) {
5670 <(\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;
5671 <(\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 ) {
5672 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return name;
5673 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5674 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5675  
5676 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return origName;
5677 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5678  
5679 <(\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 ) {
5680 <(\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 );
5681 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return matches ?
5682 <(\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
5683 <(\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" ) :
5684 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value;
5685 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5686  
5687 <(\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 ) {
5688 <(\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" ) ?
5689 <(\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
5690 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ 4 :
5691 <(\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
5692 <(\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,
5693  
5694 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = 0;
5695  
5696 <(\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 ) {
5697 <(\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
5698 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra === "margin" ) {
5699 <(\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 );
5700 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5701  
5702 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isBorderBox ) {
5703 <(\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
5704 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra === "content" ) {
5705 <(\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 );
5706 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5707  
5708 <(\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
5709 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra !== "margin" ) {
5710 <(\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 );
5711 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5712 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5713 <(\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
5714 <(\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 );
5715  
5716 <(\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
5717 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra !== "padding" ) {
5718 <(\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 );
5719 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5720 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5721 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5722  
5723 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return val;
5724 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5725  
5726 <(\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 ) {
5727  
5728 <(\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
5729 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var valueIsBorderBox = true,
5730 <(\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,
5731 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ styles = getStyles( elem ),
5732 <(\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";
5733  
5734 <(\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
5735 <(\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
5736 <(\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
5737 <(\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 ) {
5738 <(\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
5739 <(\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 );
5740 <(\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 ) {
5741 <(\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 ];
5742 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5743  
5744 <(\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.
5745 <(\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) ) {
5746 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return val;
5747 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5748  
5749 <(\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
5750 <(\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
5751 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ valueIsBorderBox = isBorderBox &&
5752 <(\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 ] );
5753  
5754 <(\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
5755 <(\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;
5756 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5757  
5758 <(\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
5759 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ( val +
5760 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ augmentWidthOrHeight(
5761 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem,
5762 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name,
5763 <(\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" ),
5764 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ valueIsBorderBox,
5765 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ 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)/ ) + "px";
5768 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5769  
5770 <(\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 ) {
5771 <(\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,
5772 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ values = [],
5773 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ index = 0,
5774 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ length = elements.length;
5775  
5776 <(\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++ ) {
5777 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = elements[ index ];
5778 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !elem.style ) {
5779 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ continue;
5780 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5781  
5782 <(\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" );
5783 <(\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;
5784 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( show ) {
5785 <(\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
5786 <(\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
5787 <(\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" ) {
5788 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem.style.display = "";
5789 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5790  
5791 <(\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
5792 <(\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
5793 <(\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
5794 <(\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 ) ) {
5795 <(\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) );
5796 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5797 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5798  
5799 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !values[ index ] ) {
5800 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hidden = isHidden( elem );
5801  
5802 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( display && display !== "none" || !hidden ) {
5803 <(\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") );
5804 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5805 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5806 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5807 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5808  
5809 <(\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
5810 <(\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
5811 <(\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++ ) {
5812 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem = elements[ index ];
5813 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( !elem.style ) {
5814 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ continue;
5815 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5816 <(\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 === "" ) {
5817 <(\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";
5818 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5819 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5820  
5821 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elements;
5822 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
5823  
5824 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.extend({
5825 <(\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
5826 <(\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
5827 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssHooks: {
5828 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ opacity: {
5829 <(\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 ) {
5830 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5831 <(\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
5832 <(\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" );
5833 <(\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;
5834 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5835 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5836 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5837 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5838  
5839 <(\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
5840 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssNumber: {
5841 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "columnCount": true,
5842 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "fillOpacity": true,
5843 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "fontWeight": true,
5844 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "lineHeight": true,
5845 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "opacity": true,
5846 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "order": true,
5847 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "orphans": true,
5848 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "widows": true,
5849 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "zIndex": true,
5850 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "zoom": true
5851 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5852  
5853 <(\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
5854 <(\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
5855 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cssProps: {
5856 <(\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
5857 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ "float": "cssFloat"
5858 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5859  
5860 <(\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
5861 <(\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 ) {
5862 <(\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
5863 <(\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 ) {
5864 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
5865 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5866  
5867 <(\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
5868 <(\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,
5869 <(\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 ),
5870 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style = elem.style;
5871  
5872 <(\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 ) );
5873  
5874 <(\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
5875 <(\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
5876 <(\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 ];
5877  
5878 <(\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
5879 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( value !== undefined ) {
5880 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ type = typeof value;
5881  
5882 <(\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
5883 <(\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 )) ) {
5884 <(\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 ) );
5885 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Fixes bug #9237
5886 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ type = "number";
5887 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5888  
5889 <(\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
5890 <(\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 ) {
5891 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return;
5892 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5893  
5894 <(\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)
5895 <(\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 ] ) {
5896 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ value += "px";
5897 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5898  
5899 <(\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,
5900 <(\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
5901 <(\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 ) {
5902 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style[ name ] = "inherit";
5903 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5904  
5905 <(\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
5906 <(\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 ) {
5907 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Support: Chrome, Safari
5908 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ // Setting style to blank string required to delete "style: x !important;"
5909 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style[ name ] = "";
5910 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ style[ name ] = value;
5911 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5912  
5913 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
5914 <(\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
5915 <(\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 ) {
5916 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return ret;
5917 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5918  
5919 <(\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
5920 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return style[ name ];
5921 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5922 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5923  
5924 <(\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 ) {
5925 <(\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,
5926 <(\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 );
5927  
5928 <(\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
5929 <(\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 ) );
5930  
5931 <(\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
5932 <(\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
5933 <(\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 ];
5934  
5935 <(\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
5936 <(\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 ) {
5937 <(\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 );
5938 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5939  
5940 <(\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
5941 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( val === undefined ) {
5942 <(\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 );
5943 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5944  
5945 <(\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
5946 <(\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 ) {
5947 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ val = cssNormalTransform[ name ];
5948 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5949  
5950 <(\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
5951 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( extra === "" || extra ) {
5952 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ num = parseFloat( val );
5953 <(\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;
5954 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5955 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return val;
5956 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
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)/jQuery.each([ "height", "width" ], function( i, name ) {
5960 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery.cssHooks[ name ] = {
5961 <(\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 ) {
5962 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5963 <(\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
5964 <(\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
5965 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ?
5966 <(\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() {
5967 <(\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 );
5968 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }) :
5969 <(\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 );
5970 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5971 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
5972  
5973 <(\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 ) {
5974 <(\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 );
5975 <(\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 ?
5976 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ augmentWidthOrHeight(
5977 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ elem,
5978 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ name,
5979 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ extra,
5980 <(\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",
5981 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ styles
5982 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ ) : 0
5983 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ );
5984 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5985 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
5986 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
5987  
5988 <(\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
5989 <(\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,
5990 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ function( elem, computed ) {
5991 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( computed ) {
5992 <(\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
5993 <(\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
5994 <(\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" },
5995 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ curCSS, [ elem, "marginRight" ] );
5996 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5997 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
5998 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/);
5999  
6000 <(\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
6001 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.each({
6002 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ margin: "",
6003 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ padding: "",
6004 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ border: "Width"
6005 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}, function( prefix, suffix ) {
6006 <(\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 ] = {
6007 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ expand: function( value ) {
6008 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var i = 0,
6009 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ expanded = {},
6010  
6011 <(\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
6012 <(\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 ];
6013  
6014 <(\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++ ) {
6015 <(\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 ] =
6016 <(\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 ];
6017 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6018  
6019 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return expanded;
6020 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6021 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ };
6022  
6023 <(\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 ) ) {
6024 <(\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;
6025 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6026 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
6027  
6028 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.fn.extend({
6029 <(\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 ) {
6030 <(\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 ) {
6031 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var styles, len,
6032 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ map = {},
6033 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ i = 0;
6034  
6035 <(\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 ) ) {
6036 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ styles = getStyles( elem );
6037 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ len = name.length;
6038  
6039 <(\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++ ) {
6040 <(\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 );
6041 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6042  
6043 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return map;
6044 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6045  
6046 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return value !== undefined ?
6047 <(\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 ) :
6048 <(\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 );
6049 <(\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 );
6050 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6051 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ show: function() {
6052 <(\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 );
6053 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6054 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hide: function() {
6055 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return showHide( this );
6056 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6057 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ toggle: function( state ) {
6058 <(\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" ) {
6059 <(\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();
6060 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6061  
6062 <(\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() {
6063 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ if ( isHidden( this ) ) {
6064 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery( this ).show();
6065 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6066 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ jQuery( this ).hide();
6067 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6068 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ });
6069 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6070 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/});
6071  
6072  
6073 <(\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 ) {
6074 <(\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 );
6075 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/}
6076 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.Tween = Tween;
6077  
6078 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/Tween.prototype = {
6079 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ constructor: Tween,
6080 <(\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 ) {
6081 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.elem = elem;
6082 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.prop = prop;
6083 <(\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";
6084 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.options = options;
6085 <(\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();
6086 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ this.end = end;
6087 <(\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" );
6088 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6089 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ cur: function() {
6090 <(\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 ];
6091  
6092 <(\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 ?
6093 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hooks.get( this ) :
6094 <(\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 );
6095 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6096 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ run: function( percent ) {
6097 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var eased,
6098 <(\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 ];
6099  
6100 <(\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 ) {
6101 <(\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 ](
6102 <(\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
6103 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ );
6104 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6105 <(\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;
6106 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6107 <(\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;
6108  
6109 <(\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 ) {
6110 <(\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 );
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)/ if ( hooks && hooks.set ) {
6114 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ hooks.set( this );
6115 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6116 <(\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 );
6117 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6118 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return this;
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  
6122 <(\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;
6123  
6124 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/Tween.propHooks = {
6125 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ _default: {
6126 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ get: function( tween ) {
6127 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ var result;
6128  
6129 <(\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 &&
6130 <(\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) ) {
6131 <(\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 ];
6132 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6133  
6134 <(\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
6135 <(\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
6136 <(\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.
6137 <(\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.
6138 <(\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, "" );
6139 <(\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.
6140 <(\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;
6141 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ },
6142 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ set: function( tween ) {
6143 <(\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
6144 <(\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
6145 <(\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 ] ) {
6146 <(\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 );
6147 <(\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 ] ) ) {
6148 <(\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 );
6149 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ } else {
6150 <(\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;
6151 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6152 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6153 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6154 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
6155  
6156 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/// Support: IE9
6157 <(\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
6158  
6159 <(\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 = {
6160 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ set: function( tween ) {
6161 <(\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 ) {
6162 <(\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;
6163 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6164 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6165 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
6166  
6167 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/jQuery.easing = {
6168 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ linear: function( p ) {
6169 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ return p;
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)/ swing: function( p ) {
6172 <(\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;
6173 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/ }
6174 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/};
6175  
6176 <(\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;
6177  
6178 <(\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
6179 <(\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 = {};
6180  
6181  
6182  
6183  
6184 <(\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
6185 <(\w+)\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,
6186 <(\w+)\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)$/,
6187 <(\w+)\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" ),
6188 <(\w+)\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$/,
6189 <(\w+)\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 ],
6190 <(\w+)\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 = {
6191 <(\w+)\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 ) {
6192 <(\w+)\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 ),
6193 <(\w+)\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(),
6194 <(\w+)\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 ),
6195 <(\w+)\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" ),
6196  
6197 <(\w+)\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
6198 <(\w+)\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 ) &&
6199 <(\w+)\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 ) ),
6200 <(\w+)\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,
6201 <(\w+)\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;
6202  
6203 <(\w+)\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 ) {
6204 <(\w+)\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
6205 <(\w+)\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 ];
6206  
6207 <(\w+)\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
6208 <(\w+)\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 || [];
6209  
6210 <(\w+)\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
6211 <(\w+)\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;
6212  
6213 <(\w+)\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 {
6214 <(\w+)\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*
6215 <(\w+)\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
6216 <(\w+)\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";
6217  
6218 <(\w+)\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
6219 <(\w+)\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;
6220 <(\w+)\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 );
6221  
6222 <(\w+)\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()
6223 <(\w+)\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
6224 <(\w+)\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 );
6225 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6226  
6227 <(\w+)\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
6228 <(\w+)\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 ) {
6229 <(\w+)\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;
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 point tween.unit = unit;
6231 <(\w+)\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
6232 <(\w+)\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 ] ?
6233 <(\w+)\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 ] :
6234 <(\w+)\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 ];
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 point }
6236  
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 return tween;
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 } ]
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 };
6240  
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// Animations created synchronously will run synchronously
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 pointfunction createFxNow() {
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 setTimeout(function() {
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 fxNow = undefined;
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 });
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 return ( fxNow = jQuery.now() );
6247 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point}
6248  
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// Generate parameters to create a standard animation
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 pointfunction genFx( type, includeWidth ) {
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 var which,
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 i = 0,
6253 <(\w+)\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 };
6254  
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 // if we include width, step value is 1 to do all cssExpand values,
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 // if we don't include width, step value is 2 to skip over Left and Right
6257 <(\w+)\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;
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 for ( ; i < 4 ; i += 2 - includeWidth ) {
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 which = cssExpand[ i ];
6260 <(\w+)\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;
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 }
6262  
6263 <(\w+)\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 ) {
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 attrs.opacity = attrs.width = type;
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 }
6266  
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 return attrs;
6268 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point}
6269  
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 pointfunction createTween( value, prop, animation ) {
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 var tween,
6272 <(\w+)\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[ "*" ] ),
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 index = 0,
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 length = collection.length;
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 for ( ; index < length; index++ ) {
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 if ( (tween = collection[ index ].call( animation, prop, value )) ) {
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 // we're done with this property
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 return tween;
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 }
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 }
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}
6283  
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 pointfunction defaultPrefilter( elem, props, opts ) {
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 /* jshint validthis: true */
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 var prop, value, toggle, tween, hooks, oldfire, display,
6287 <(\w+)\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,
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 orig = {},
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 style = elem.style,
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 hidden = elem.nodeType && isHidden( elem ),
6291 <(\w+)\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" );
6292  
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 point // handle queue: false promises
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 if ( !opts.queue ) {
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 hooks = jQuery._queueHooks( elem, "fx" );
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 if ( hooks.unqueued == null ) {
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 hooks.unqueued = 0;
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 oldfire = hooks.empty.fire;
6299 <(\w+)\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() {
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 if ( !hooks.unqueued ) {
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 point oldfire();
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 }
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 };
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 }
6305 <(\w+)\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++;
6306  
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 anim.always(function() {
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 // doing this makes sure that the complete handler will be called
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 // before this completes
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 anim.always(function() {
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 hooks.unqueued--;
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 if ( !jQuery.queue( elem, "fx" ).length ) {
6313 <(\w+)\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();
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 }
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 });
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6318  
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 // height/width overflow pass
6320 <(\w+)\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 ) ) {
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 point // Make sure that nothing sneaks out
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 // Record all 3 overflow attributes because IE9-10 do not
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 // change the overflow attribute when overflowX and
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 // overflowY are set to the same value
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 opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
6326  
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 // Set display property to inline-block for height/width
6328 <(\w+)\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
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 display = jQuery.css( elem, "display" );
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 // Get default display if display is currently "none"
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 if ( display === "none" ) {
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 display = defaultDisplay( elem.nodeName );
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 <(\w+)\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 ( display === "inline" &&
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 point jQuery.css( elem, "float" ) === "none" ) {
6336  
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 style.display = "inline-block";
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 }
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 }
6340  
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 if ( opts.overflow ) {
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 style.overflow = "hidden";
6343 <(\w+)\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() {
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 style.overflow = opts.overflow[ 0 ];
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 style.overflowX = opts.overflow[ 1 ];
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 style.overflowY = opts.overflow[ 2 ];
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 });
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 }
6349  
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 // show/hide pass
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 for ( prop in props ) {
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 value = props[ prop ];
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 if ( rfxtypes.exec( value ) ) {
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 delete props[ prop ];
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 toggle = toggle || value === "toggle";
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 if ( value === ( hidden ? "hide" : "show" ) ) {
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 // 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
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 if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
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 hidden = true;
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 } else {
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 continue;
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 }
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 }
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 orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
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  
6369 <(\w+)\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 ) ) {
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 if ( dataShow ) {
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 ( "hidden" in dataShow ) {
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 hidden = dataShow.hidden;
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 }
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 } else {
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 dataShow = data_priv.access( elem, "fxshow", {} );
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 }
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 // store state if its toggle - enables .stop().toggle() to "reverse"
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 if ( toggle ) {
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 dataShow.hidden = !hidden;
6381 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
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 if ( hidden ) {
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 jQuery( elem ).show();
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 } else {
6385 <(\w+)\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() {
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 jQuery( elem ).hide();
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 });
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 anim.done(function() {
6390 <(\w+)\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;
6391  
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 data_priv.remove( elem, "fxshow" );
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 for ( prop in orig ) {
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 jQuery.style( elem, prop, orig[ prop ] );
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 }
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 });
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 for ( prop in orig ) {
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 tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
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 if ( !( prop in dataShow ) ) {
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 dataShow[ prop ] = tween.start;
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 if ( hidden ) {
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 tween.end = tween.start;
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 tween.start = prop === "width" || prop === "height" ? 1 : 0;
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 }
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 }
6407 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
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 }
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}
6410  
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 pointfunction propFilter( props, specialEasing ) {
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 var index, name, easing, value, hooks;
6413  
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 // camelCase, specialEasing and expand cssHook pass
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 for ( index in props ) {
6416 <(\w+)\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 );
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 easing = specialEasing[ name ];
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 value = props[ index ];
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 if ( jQuery.isArray( value ) ) {
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 easing = value[ 1 ];
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 value = props[ index ] = value[ 0 ];
6422 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
6423  
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 ( index !== name ) {
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 props[ name ] = value;
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 delete props[ index ];
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  
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 hooks = jQuery.cssHooks[ name ];
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 if ( hooks && "expand" in hooks ) {
6431 <(\w+)\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 );
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 delete props[ name ];
6433  
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 // not quite $.extend, this wont overwrite keys already present.
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 // also - reusing 'index' from above because we have the correct "name"
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 for ( index in value ) {
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 if ( !( index in props ) ) {
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 props[ index ] = value[ index ];
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 specialEasing[ index ] = easing;
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 }
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 } else {
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 specialEasing[ name ] = easing;
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 }
6445 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point }
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}
6447  
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 pointfunction Animation( elem, properties, options ) {
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 var result,
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 stopped,
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 index = 0,
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 length = animationPrefilters.length,
6453 <(\w+)\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() {
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 // don't match elem in the :animated selector
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 delete tick.elem;
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 }),
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 tick = function() {
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 if ( stopped ) {
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 return false;
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 var currentTime = fxNow || createFxNow(),
6462 <(\w+)\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 ),
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 // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
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 temp = remaining / animation.duration || 0,
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 percent = 1 - temp,
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 index = 0,
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 length = animation.tweens.length;
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 point for ( ; index < length ; index++ ) {
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< length ; index++ ) { animation.tweens[ index ].run( percent );
6471 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) { }
6472  
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< length ; index++ ) { deferred.notifyWith( elem, [ animation, percent, remaining ]);
6474  
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< length ; index++ ) { if ( percent < 1 && length ) {
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< length ; index++ ) {< 1 && length ) { return remaining;
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< length ; index++ ) {< 1 && length ) { } else {
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< length ; index++ ) {< 1 && length ) { deferred.resolveWith( elem, [ animation ] );
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< length ; index++ ) {< 1 && length ) { return false;
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< length ; index++ ) {< 1 && length ) { }
6481 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) { },
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< length ; index++ ) {< 1 && length ) { animation = deferred.promise({
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< length ; index++ ) {< 1 && length ) { elem: elem,
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< length ; index++ ) {< 1 && length ) { props: jQuery.extend( {}, properties ),
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< length ; index++ ) {< 1 && length ) { opts: jQuery.extend( true, { specialEasing: {} }, options ),
6486 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!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,
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< length ; index++ ) {< 1 && length ) { originalOptions: options,
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< length ; index++ ) {< 1 && length ) { startTime: fxNow || createFxNow(),
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< length ; index++ ) {< 1 && length ) { duration: options.duration,
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< length ; index++ ) {< 1 && length ) { tweens: [],
6491 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!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 ) {
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< length ; index++ ) {< 1 && length ) { var tween = jQuery.Tween( elem, animation.opts, prop, end,
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< length ; index++ ) {< 1 && length ) { animation.opts.specialEasing[ prop ] || animation.opts.easing );
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< length ; index++ ) {< 1 && length ) { animation.tweens.push( tween );
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< length ; index++ ) {< 1 && length ) { return tween;
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< length ; index++ ) {< 1 && length ) { },
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< length ; index++ ) {< 1 && length ) { stop: function( gotoEnd ) {
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< length ; index++ ) {< 1 && length ) { var index = 0,
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< length ; index++ ) {< 1 && length ) { // if we are going to the end, we want to run all the tweens
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< length ; index++ ) {< 1 && length ) { // otherwise we skip this part
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< length ; index++ ) {< 1 && length ) { length = gotoEnd ? animation.tweens.length : 0;
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< length ; index++ ) {< 1 && length ) { if ( stopped ) {
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< length ; index++ ) {< 1 && length ) { return this;
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< length ; index++ ) {< 1 && length ) { }
6505 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!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;
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 point< length ; index++ ) {< 1 && length ) { for ( ; index < length ; index++ ) {
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { animation.tweens[ index ].run( 1 );
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }
6509  
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 ; index++ ) {< 1 && length ) {< length ; index++ ) { // resolve when we played the last frame
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { // otherwise, reject
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { if ( gotoEnd ) {
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { deferred.resolveWith( elem, [ animation, gotoEnd ] );
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { } else {
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { deferred.rejectWith( elem, [ animation, gotoEnd ] );
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { return this;
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { }),
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { props = animation.props;
6521  
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { propFilter( props, animation.opts.specialEasing );
6523  
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) { for ( ; index < length ; index++ ) {
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 ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
6526 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|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 ) {
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< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { return result;
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++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { }
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++ ) {< 1 && length ) {< length ; index++ ) {< 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++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { jQuery.map( props, createTween, animation );
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++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) { if ( jQuery.isFunction( animation.opts.start ) ) {
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 ) {< length ; index++ ) {< length ; index++ ) { animation.opts.start.call( elem, animation );
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 ) {< length ; index++ ) {< length ; index++ ) { }
6536  
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 ) {< length ; index++ ) {< length ; index++ ) { jQuery.fx.timer(
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 ) {< length ; index++ ) {< length ; index++ ) { jQuery.extend( tick, {
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 ) {< length ; index++ ) {< length ; index++ ) { elem: elem,
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 ) {< length ; index++ ) {< length ; index++ ) { anim: animation,
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 ) {< length ; index++ ) {< length ; index++ ) { queue: animation.opts.queue
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 ) {< length ; index++ ) {< length ; index++ ) { })
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 ) {< length ; index++ ) {< length ; index++ ) { );
6544  
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 ) {< length ; index++ ) {< length ; index++ ) { // attach callbacks from 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 ) {< length ; index++ ) {< length ; index++ ) { return animation.progress( animation.opts.progress )
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 ) {< length ; index++ ) {< length ; index++ ) { .done( animation.opts.done, animation.opts.complete )
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 ) {< length ; index++ ) {< length ; index++ ) { .fail( animation.opts.fail )
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 ) {< length ; index++ ) {< length ; index++ ) { .always( animation.opts.always );
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 ) {< length ; index++ ) {< length ; index++ ) {}
6551  
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 ) {< length ; index++ ) {< length ; index++ ) {jQuery.Animation = jQuery.extend( Animation, {
6553  
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 ) {< length ; index++ ) {< length ; index++ ) { tweener: function( props, callback ) {
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 ) {< length ; index++ ) {< length ; index++ ) { if ( jQuery.isFunction( props ) ) {
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 ) {< length ; index++ ) {< length ; index++ ) { callback = props;
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 ) {< length ; index++ ) {< length ; index++ ) { props = [ "*" ];
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 ) {< length ; index++ ) {< length ; index++ ) { } else {
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 ; index++ ) {< length ; index++ ) { props = props.split(" ");
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 ) {< length ; index++ ) {< length ; index++ ) { }
6561  
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 ) {< length ; index++ ) {< length ; index++ ) { var prop,
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 ) {< length ; index++ ) {< length ; index++ ) { index = 0,
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 ) {< length ; index++ ) {< length ; index++ ) { length = props.length;
6565  
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++ ) {< length ; index++ ) { for ( ; index < length ; index++ ) {
6567 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 ];
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++ ) {< length ; index++ ) {< length ; index++ ) { tweeners[ prop ] = tweeners[ prop ] || [];
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++ ) {< length ; index++ ) {< length ; index++ ) { tweeners[ prop ].unshift( callback );
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++ ) {< length ; index++ ) {< length ; index++ ) { }
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++ ) {< length ; index++ ) {< length ; index++ ) { },
6572  
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++ ) {< length ; index++ ) {< length ; index++ ) { prefilter: function( callback, prepend ) {
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++ ) {< length ; index++ ) {< length ; index++ ) { if ( prepend ) {
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++ ) {< length ; index++ ) {< length ; index++ ) { animationPrefilters.unshift( callback );
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++ ) {< length ; index++ ) {< length ; index++ ) { } else {
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++ ) {< length ; index++ ) {< length ; index++ ) { animationPrefilters.push( callback );
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++ ) {< length ; index++ ) {< length ; index++ ) { }
6579 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
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++ ) {< length ; index++ ) {< length ; index++ ) {});
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++ ) {< length ; index++ ) {< length ; index++ ) {jQuery.speed = function( speed, easing, fn ) {
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++ ) {< length ; index++ ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
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++ ) {< length ; index++ ) { complete: fn || !fn && easing ||
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++ ) {< length ; index++ ) { jQuery.isFunction( speed ) && speed,
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++ ) {< length ; index++ ) { duration: speed,
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++ ) {< length ; index++ ) { easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
6588 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { };
6589  
6590 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 :
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++ ) {< length ; index++ ) { opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
6592  
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++ ) {< length ; index++ ) { // normalize opt.queue - true/undefined/null -> "fx"
6594 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 ) {
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++ ) {< length ; index++ ) { opt.queue = "fx";
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++ ) {< length ; index++ ) { }
6597  
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++ ) {< length ; index++ ) { // Queueing
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++ ) {< length ; index++ ) { opt.old = opt.complete;
6600  
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++ ) {< length ; index++ ) { opt.complete = function() {
6602 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 ) ) {
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++ ) {< length ; index++ ) { opt.old.call( this );
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++ ) {< length ; index++ ) { }
6605  
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++ ) {< length ; index++ ) { if ( opt.queue ) {
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++ ) {< length ; index++ ) { jQuery.dequeue( this, opt.queue );
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++ ) {< length ; index++ ) { }
6609 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { };
6610  
6611 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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;
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++ ) {< length ; index++ ) {};
6613  
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++ ) {< length ; index++ ) {jQuery.fn.extend({
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++ ) {< length ; index++ ) { fadeTo: function( speed, to, easing, callback ) {
6616  
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++ ) {< length ; index++ ) { // show any hidden elements after setting opacity to 0
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++ ) {< length ; index++ ) { return this.filter( isHidden ).css( "opacity", 0 ).show()
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++ ) {< length ; index++ ) { // animate to the value specified
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++ ) {< length ; index++ ) { .end().animate({ opacity: to }, speed, easing, callback );
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 ; index++ ) { },
6623 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 ) {
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++ ) {< length ; index++ ) { var empty = jQuery.isEmptyObject( prop ),
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++ ) { optall = jQuery.speed( speed, easing, callback ),
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++ ) { doAnimation = function() {
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++ ) { // Operate on a copy of prop so per-property easing won't be lost
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++ ) { var anim = Animation( this, jQuery.extend( {}, prop ), optall );
6629  
6630 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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
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++ ) { if ( empty || data_priv.get( this, "finish" ) ) {
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++ ) { anim.stop( true );
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++ ) { }
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++ ) { };
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++ ) { doAnimation.finish = doAnimation;
6636  
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++ ) { return empty || optall.queue === false ?
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++ ) { this.each( doAnimation ) :
6639 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 );
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++ ) { },
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++ ) { stop: function( type, clearQueue, gotoEnd ) {
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++ ) { var stopQueue = function( hooks ) {
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++ ) { var stop = hooks.stop;
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++ ) { delete hooks.stop;
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++ ) { stop( gotoEnd );
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++ ) { if ( typeof type !== "string" ) {
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++ ) { gotoEnd = clearQueue;
6650 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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;
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++ ) { type = undefined;
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++ ) { }
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++ ) { if ( clearQueue && type !== false ) {
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++ ) { this.queue( type || "fx", [] );
6655 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
6656  
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++ ) { return this.each(function() {
6658 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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,
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++ ) { index = type != null && type + "queueHooks",
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++ ) { timers = jQuery.timers,
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++ ) { data = data_priv.get( this );
6662  
6663 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 ) {
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 ( data[ index ] && data[ index ].stop ) {
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++ ) { stopQueue( data[ index ] );
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++ ) { } else {
6668 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 ) {
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++ ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
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++ ) { stopQueue( data[ index ] );
6671 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
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++ ) { }
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++ ) { }
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++ ) { for ( index = timers.length; index--; ) {
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++ ) { if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
6677 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 );
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++ ) { dequeue = false;
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++ ) { timers.splice( index, 1 );
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++ ) { }
6682  
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++ ) { // start the next in the queue if the last step wasn't forced
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++ ) { // timers currently will call their complete callbacks, which will dequeue
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++ ) { // but only if they were gotoEnd
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++ ) { if ( dequeue || !gotoEnd ) {
6687 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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 );
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++ ) { }
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++ ) { });
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++ ) { },
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++ ) { finish: function( type ) {
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++ ) { if ( type !== false ) {
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++ ) { type = type || "fx";
6694 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) { }
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 this.each(function() {
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++ ) { var index,
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++ ) { data = data_priv.get( this ),
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++ ) { queue = data[ type + "queue" ],
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++ ) { hooks = data[ type + "queueHooks" ],
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++ ) { timers = jQuery.timers,
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++ ) { length = queue ? queue.length : 0;
6702  
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++ ) { // enable finishing flag on private data
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++ ) { data.finish = true;
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++ ) { // empty the queue first
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++ ) { jQuery.queue( this, type, [] );
6708  
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++ ) { if ( hooks && hooks.stop ) {
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++ ) { hooks.stop.call( this, true );
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++ ) { }
6712  
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++ ) { // look for any active animations, and finish them
6714 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|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--; ) {
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++ ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
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++ ) { timers[ index ].anim.stop( 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++ ) { timers.splice( index, 1 );
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++ ) { }
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++ ) { }
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++ ) { // look for any animations in the old queue and finish them
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++ ) { for ( index = 0; index < length; index++ ) {
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++ ) {< length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) {
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++ ) {< length; index++ ) { queue[ index ].finish.call( this );
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++ ) {< length; index++ ) { }
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++ ) {< length; index++ ) { }
6727  
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++ ) {< length; index++ ) { // turn off finishing flag
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++ ) {< length; index++ ) { delete data.finish;
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++ ) {< 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++ ) {< length; index++ ) { }
6732 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {});
6733  
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++ ) {< length; index++ ) {jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
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++ ) {< length; index++ ) { var cssFn = jQuery.fn[ name ];
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++ ) {< length; index++ ) { jQuery.fn[ name ] = function( speed, easing, callback ) {
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++ ) {< length; index++ ) { return speed == null || typeof speed === "boolean" ?
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++ ) {< length; index++ ) { cssFn.apply( this, arguments ) :
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++ ) {< length; index++ ) { this.animate( genFx( name, true ), speed, easing, callback );
6740 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) { };
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++ ) {< length; index++ ) {});
6742  
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++ ) {< length; index++ ) {// Generate shortcuts for custom animations
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++ ) {< length; index++ ) {jQuery.each({
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++ ) {< length; index++ ) { slideDown: genFx("show"),
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++ ) {< length; index++ ) { slideUp: genFx("hide"),
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++ ) {< length; index++ ) { slideToggle: genFx("toggle"),
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++ ) {< length; index++ ) { fadeIn: { opacity: "show" },
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++ ) {< length; index++ ) { fadeOut: { opacity: "hide" },
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++ ) {< length; index++ ) { fadeToggle: { opacity: "toggle" }
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++ ) {< length; index++ ) {}, function( name, props ) {
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++ ) {< length; index++ ) { jQuery.fn[ name ] = function( speed, easing, callback ) {
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++ ) {< length; index++ ) { return this.animate( props, speed, easing, callback );
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++ ) {< length; 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++ ) {< length; index++ ) {});
6756  
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++ ) {< length; index++ ) {jQuery.timers = [];
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++ ) {< length; index++ ) {jQuery.fx.tick = function() {
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; index++ ) { var timer,
6760 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|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,
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++ ) {< length; index++ ) { timers = jQuery.timers;
6762  
6763 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|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();
6764  
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++ ) {< length; index++ ) { for ( ; i < timers.length; i++ ) {
6766 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ];
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++ ) {< length; index++ ) {< timers.length; i++ ) { // Checks the timer has not already been removed
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++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timer() && timers[ i ] === timer ) {
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++ ) {< length; index++ ) {< timers.length; i++ ) { timers.splice( i--, 1 );
6770 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {< length; index++ ) {< timers.length; i++ ) { }
6772  
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++ ) {< length; index++ ) {< timers.length; i++ ) { if ( !timers.length ) {
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++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.fx.stop();
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++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {< length; index++ ) {< timers.length; i++ ) { fxNow = undefined;
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++ ) {< length; index++ ) {< timers.length; i++ ) {};
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++ ) {< length; index++ ) {< timers.length; i++ ) {jQuery.fx.timer = function( timer ) {
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++ ) {< length; index++ ) {< timers.length; i++ ) { jQuery.timers.push( timer );
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++ ) {< timers.length; i++ ) { if ( timer() ) {
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++ ) {< timers.length; i++ ) { jQuery.fx.start();
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++ ) {< timers.length; i++ ) { } else {
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++ ) {< timers.length; i++ ) { jQuery.timers.pop();
6785 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {< timers.length; i++ ) {};
6787  
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++ ) {< timers.length; i++ ) {jQuery.fx.interval = 13;
6789  
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++ ) {< timers.length; i++ ) {jQuery.fx.start = function() {
6791 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) {< timers.length; i++ ) { timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
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++ ) {< timers.length; i++ ) { }
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++ ) {< timers.length; i++ ) {};
6795  
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++ ) {< timers.length; i++ ) {jQuery.fx.stop = function() {
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++ ) {< timers.length; i++ ) { clearInterval( timerId );
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++ ) {< timers.length; i++ ) { timerId = null;
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++ ) {< timers.length; i++ ) {};
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++ ) {< timers.length; i++ ) {jQuery.fx.speeds = {
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++ ) {< timers.length; i++ ) { slow: 600,
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++ ) {< timers.length; i++ ) { fast: 200,
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++ ) {< timers.length; i++ ) { // Default speed
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++ ) {< timers.length; i++ ) { _default: 400
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++ ) {< timers.length; i++ ) {};
6807  
6808  
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++ ) {< timers.length; i++ ) {// Based off of the plugin by Clint Helfers, with permission.
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++ ) {< timers.length; i++ ) {// http://blindsignals.com/index.php/2009/07/jquery-delay/
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++ ) {< timers.length; i++ ) {jQuery.fn.delay = function( time, type ) {
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++ ) {< timers.length; i++ ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
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++ ) {< timers.length; i++ ) { type = type || "fx";
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++ ) {< timers.length; i++ ) { return this.queue( type, function( next, hooks ) {
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++ ) {< timers.length; i++ ) { var timeout = setTimeout( next, time );
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++ ) {< timers.length; i++ ) { hooks.stop = function() {
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++ ) {< timers.length; i++ ) { clearTimeout( timeout );
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.length; i++ ) { };
6820 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
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++ ) {< timers.length; i++ ) {};
6822  
6823  
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++ ) {(function() {
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++ ) { var input = document.createElement( "input" ),
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++ ) { select = document.createElement( "select" ),
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++ ) { opt = select.appendChild( document.createElement( "option" ) );
6828  
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++ ) { input.type = "checkbox";
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++ ) { // Support: iOS 5.1, Android 4.x, Android 2.3
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++ ) { // Check the default checkbox/radio value ("" on old WebKit; "on" elsewhere)
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++ ) { support.checkOn = input.value !== "";
6834  
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++ ) { // Must access the parent to make an option select properly
6836 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { support.optSelected = opt.selected;
6838  
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++ ) { // Make sure that the options inside disabled selects aren't marked as disabled
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++ ) { // (WebKit marks them as disabled)
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++ ) { select.disabled = true;
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++ ) { support.optDisabled = !opt.disabled;
6843  
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++ ) { // Check if an input maintains its value after becoming a radio
6845 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { input = document.createElement( "input" );
6847 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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";
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++ ) { input.type = "radio";
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++ ) { support.radioValue = input.value === "t";
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++ ) {})();
6851  
6852  
6853 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { attrHandle = jQuery.expr.attrHandle;
6855  
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++ ) {jQuery.fn.extend({
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++ ) { attr: function( name, value ) {
6858 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { },
6860  
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++ ) { removeAttr: function( name ) {
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++ ) { return this.each(function() {
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++ ) { jQuery.removeAttr( this, name );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6866 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
6867  
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++ ) {jQuery.extend({
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++ ) { attr: function( elem, name, value ) {
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++ ) { var hooks, ret,
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++ ) { nType = elem.nodeType;
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++ ) { // don't get/set attributes on text, comment and attribute nodes
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++ ) { if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
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++ ) { return;
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++ ) { }
6877  
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++ ) { // Fallback to prop when attributes are not supported
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++ ) { if ( typeof elem.getAttribute === strundefined ) {
6880 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
6881 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6882  
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++ ) { // All attributes are lowercase
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++ ) { // Grab necessary hook if one is defined
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++ ) { if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
6886 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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();
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++ ) { hooks = jQuery.attrHooks[ name ] ||
6888 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { }
6890  
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++ ) { if ( value !== undefined ) {
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++ ) { if ( value === null ) {
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++ ) { jQuery.removeAttr( elem, name );
6895  
6896 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { return ret;
6898  
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++ ) { } else {
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++ ) { elem.setAttribute( name, value + "" );
6901 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
6903  
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++ ) { } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
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++ ) { return ret;
6906  
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++ ) { } else {
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++ ) { ret = jQuery.find.attr( elem, name );
6909  
6910 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { return ret == null ?
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++ ) { undefined :
6913 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { },
6916  
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++ ) { removeAttr: function( elem, value ) {
6918 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { i = 0,
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++ ) { attrNames = value && value.match( rnotwhite );
6921  
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++ ) { if ( attrNames && elem.nodeType === 1 ) {
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++ ) { while ( (name = attrNames[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++ ) { propName = jQuery.propFix[ name ] || name;
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++ ) { // Boolean attributes get special treatment (#10870)
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++ ) { if ( jQuery.expr.match.bool.test( name ) ) {
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++ ) { // Set corresponding property to false
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++ ) { elem[ propName ] = false;
6930 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
6931  
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++ ) { elem.removeAttribute( name );
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++ ) { }
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
6936  
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++ ) { attrHooks: {
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++ ) { type: {
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++ ) { set: function( elem, value ) {
6940 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" &&
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++ ) { jQuery.nodeName( elem, "input" ) ) {
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++ ) { // Setting the type on a radio button after the value resets the value in IE6-9
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++ ) { // Reset value to default in case type is set after value during creation
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++ ) { var val = elem.value;
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++ ) { elem.setAttribute( "type", value );
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++ ) { if ( val ) {
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++ ) { elem.value = val;
6948 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { return value;
6950 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
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++ ) { }
6953 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {});
6955  
6956 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) {boolHook = {
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++ ) { set: function( elem, value, name ) {
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++ ) { if ( value === false ) {
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++ ) { // Remove boolean attributes when set to false
6961 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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 {
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++ ) { elem.setAttribute( name, name );
6964 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { return name;
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++ ) { }
6967 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
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++ ) {jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
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++ ) { var getter = attrHandle[ name ] || jQuery.find.attr;
6970  
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++ ) { attrHandle[ name ] = function( elem, name, isXML ) {
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++ ) { var ret, handle;
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++ ) { if ( !isXML ) {
6974 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { handle = attrHandle[ name ];
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++ ) { attrHandle[ name ] = ret;
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++ ) { ret = getter( elem, name, isXML ) != null ?
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++ ) { name.toLowerCase() :
6979 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { attrHandle[ name ] = handle;
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++ ) { }
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++ ) { return ret;
6983 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
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++ ) {});
6985  
6986  
6987  
6988  
6989 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
6990  
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++ ) {jQuery.fn.extend({
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++ ) { prop: function( name, value ) {
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++ ) { return access( this, jQuery.prop, name, value, arguments.length > 1 );
6994 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
6995  
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++ ) { removeProp: function( name ) {
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++ ) { return this.each(function() {
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++ ) { delete this[ jQuery.propFix[ name ] || name ];
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++ ) { });
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++ ) { }
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++ ) {});
7002  
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++ ) {jQuery.extend({
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++ ) { propFix: {
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++ ) { "for": "htmlFor",
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++ ) { "class": "className"
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++ ) { },
7008  
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++ ) { prop: function( elem, name, value ) {
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++ ) { var ret, hooks, notxml,
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++ ) { nType = elem.nodeType;
7012  
7013 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
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++ ) { return;
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++ ) { }
7017  
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++ ) { notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
7019  
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++ ) { if ( notxml ) {
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++ ) { // Fix name and attach hooks
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++ ) { name = jQuery.propFix[ name ] || name;
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++ ) { hooks = jQuery.propHooks[ 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  
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++ ) { if ( value !== undefined ) {
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++ ) { return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
7028 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 :
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++ ) { ( elem[ name ] = value );
7030  
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++ ) { } else {
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++ ) { return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
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++ ) { ret :
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++ ) { elem[ name ];
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++ ) { }
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++ ) { },
7037  
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++ ) { propHooks: {
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++ ) { tabIndex: {
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++ ) { get: function( elem ) {
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++ ) { return elem.hasAttribute( "tabindex" ) || rfocusable.test( elem.nodeName ) || elem.href ?
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++ ) { elem.tabIndex :
7043 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
7044 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7045 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7046 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {});
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++ ) {// Support: IE9+
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++ ) {// Selectedness for an option in an optgroup can be inaccurate
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++ ) {if ( !support.optSelected ) {
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++ ) { jQuery.propHooks.selected = {
7053 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { var parent = elem.parentNode;
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++ ) { if ( parent && parent.parentNode ) {
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++ ) { parent.parentNode.selectedIndex;
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++ ) { return null;
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
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++ ) {}
7062  
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++ ) {jQuery.each([
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++ ) { "tabIndex",
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++ ) { "readOnly",
7066 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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",
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++ ) { "cellSpacing",
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++ ) { "cellPadding",
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++ ) { "rowSpan",
7070 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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",
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++ ) { "useMap",
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++ ) { "frameBorder",
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++ ) { "contentEditable"
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++ ) {], function() {
7075 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) {});
7077  
7078  
7079  
7080  
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++ ) {var rclass = /[\t\r\n\f]/g;
7082  
7083 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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({
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++ ) { addClass: function( value ) {
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++ ) { var classes, elem, cur, clazz, j, finalValue,
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++ ) { proceed = typeof value === "string" && value,
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++ ) { i = 0,
7088 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
7089  
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++ ) { if ( jQuery.isFunction( value ) ) {
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++ ) { return this.each(function( j ) {
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++ ) { jQuery( this ).addClass( value.call( this, j, this.className ) );
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++ ) { if ( proceed ) {
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++ ) { // The disjunction here is for better compressibility (see removeClass)
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++ ) { classes = ( value || "" ).match( rnotwhite ) || [];
7099  
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++ ) { for ( ; i < len; i++ ) {
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++ ) { elem = this[ i ];
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++ ) { cur = elem.nodeType === 1 && ( elem.className ?
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++ ) { ( " " + elem.className + " " ).replace( rclass, " " ) :
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++ ) { if ( cur ) {
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++ ) { j = 0;
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++ ) { while ( (clazz = classes[j++]) ) {
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++ ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
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++ ) { cur += clazz + " ";
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++ ) { }
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++ ) { }
7114  
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++ ) { // only assign if different to avoid unneeded rendering.
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++ ) { finalValue = jQuery.trim( cur );
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++ ) { if ( elem.className !== finalValue ) {
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++ ) { elem.className = finalValue;
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
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++ ) { }
7123  
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++ ) { return this;
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++ ) { },
7126  
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++ ) { removeClass: function( value ) {
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++ ) { var classes, elem, cur, clazz, j, finalValue,
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++ ) { proceed = arguments.length === 0 || typeof value === "string" && value,
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++ ) { i = 0,
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++ ) { len = this.length;
7132  
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++ ) { if ( jQuery.isFunction( value ) ) {
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++ ) { return this.each(function( j ) {
7135 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) );
7136 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
7137 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7138 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { classes = ( value || "" ).match( rnotwhite ) || [];
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++ ) { for ( ; i < len; i++ ) {
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++ ) { elem = this[ i ];
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++ ) { // This expression is here for better compressibility (see addClass)
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++ ) { cur = elem.nodeType === 1 && ( elem.className ?
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++ ) { ( " " + elem.className + " " ).replace( rclass, " " ) :
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++ ) { ""
7147 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
7148  
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++ ) { if ( cur ) {
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++ ) { j = 0;
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++ ) { while ( (clazz = classes[j++]) ) {
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++ ) { // Remove *all* instances
7153 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { cur = cur.replace( " " + clazz + " ", " " );
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++ ) { }
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++ ) { }
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++ ) { // only assign if different to avoid unneeded rendering.
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++ ) { finalValue = value ? jQuery.trim( cur ) : "";
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++ ) { if ( elem.className !== finalValue ) {
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 = finalValue;
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
7166  
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++ ) { return this;
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++ ) { },
7169  
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++ ) { toggleClass: function( value, stateVal ) {
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++ ) { var type = typeof value;
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++ ) { if ( typeof stateVal === "boolean" && type === "string" ) {
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++ ) { return stateVal ? this.addClass( value ) : this.removeClass( value );
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++ ) { }
7176  
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++ ) { if ( jQuery.isFunction( value ) ) {
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++ ) { return this.each(function( 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++ ) { jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7182  
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++ ) { return this.each(function() {
7184 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" ) {
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++ ) { // toggle individual class names
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 className,
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++ ) { i = 0,
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++ ) { self = jQuery( this ),
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++ ) { classNames = value.match( rnotwhite ) || [];
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++ ) { while ( (className = classNames[ i++ ]) ) {
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++ ) { // check each className given, space separated list
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++ ) { if ( self.hasClass( 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++ ) { self.removeClass( className );
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++ ) { } else {
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++ ) { self.addClass( className );
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++ ) { }
7198 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7199  
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++ ) { // Toggle whole class name
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++ ) { } else if ( type === strundefined || type === "boolean" ) {
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++ ) { if ( this.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++ ) { // store className if set
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++ ) { data_priv.set( this, "__className__", this.className );
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 the element has a class name or if we're passed "false",
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++ ) { // then remove the whole classname (if there was one, the above saved it).
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++ ) { // Otherwise bring back whatever was previously saved (if anything),
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++ ) { // falling back to the empty string if nothing was stored.
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++ ) { this.className = this.className || value === false ? "" : data_priv.get( this, "__className__" ) || "";
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++ ) { }
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++ ) { hasClass: function( selector ) {
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++ ) { var className = " " + selector + " ",
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++ ) { i = 0,
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++ ) { l = this.length;
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++ ) { for ( ; i < l; 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++ ) { if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
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++ ) { return true;
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7225  
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++ ) { return false;
7227 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {});
7229  
7230  
7231  
7232  
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++ ) {var rreturn = /\r/g;
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++ ) {jQuery.fn.extend({
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++ ) { val: function( value ) {
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++ ) { var hooks, ret, isFunction,
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++ ) { elem = this[0];
7239  
7240 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { if ( elem ) {
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++ ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
7243  
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++ ) { if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
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++ ) { return ret;
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++ ) { }
7247  
7248 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
7249  
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++ ) { return typeof ret === "string" ?
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++ ) { // handle most common string cases
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++ ) { ret.replace(rreturn, "") :
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++ ) { // handle cases where value is null/undef or number
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++ ) { ret == null ? "" : ret;
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  
7257 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
7259  
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++ ) { isFunction = jQuery.isFunction( value );
7261  
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++ ) { return this.each(function( i ) {
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++ ) { var val;
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 ( this.nodeType !== 1 ) {
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++ ) { return;
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++ ) { }
7268  
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++ ) { if ( isFunction ) {
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++ ) { val = value.call( this, i, jQuery( this ).val() );
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++ ) { } else {
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++ ) { val = value;
7273 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7274  
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++ ) { // Treat null/undefined as ""; convert numbers to string
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++ ) { if ( val == null ) {
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++ ) { val = "";
7278  
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++ ) { } else if ( typeof val === "number" ) {
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++ ) { val += "";
7281  
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++ ) { } else if ( jQuery.isArray( val ) ) {
7283 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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 value == null ? "" : value + "";
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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() ];
7289  
7290 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
7292 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { });
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++ ) { }
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++ ) {});
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++ ) {jQuery.extend({
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++ ) { valHooks: {
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++ ) { select: {
7301 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { var value, option,
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++ ) { options = elem.options,
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++ ) { index = elem.selectedIndex,
7305 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { values = one ? null : [],
7307 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { i = index < 0 ?
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++ ) { max :
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++ ) { one ? index : 0;
7311  
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++ ) { // Loop through all the selected options
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++ ) { for ( ; i < max; i++ ) {
7314 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ];
7315  
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++ ) { // IE6-9 doesn't update selected after form reset (#2551)
7317 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) &&
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++ ) { // Don't return options that are disabled or in a disabled optgroup
7319 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) &&
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++ ) { ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
7321  
7322 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { value = jQuery( option ).val();
7324  
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++ ) { // We don't need an array for one selects
7326 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { return value;
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++ ) { }
7329  
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++ ) { // Multi-Selects return an array
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++ ) { values.push( value );
7332 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
7334  
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++ ) { return values;
7336 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7337  
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++ ) { set: function( elem, value ) {
7339 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { options = elem.options,
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++ ) { values = jQuery.makeArray( 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++ ) { i = options.length;
7343  
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++ ) { while ( i-- ) {
7345 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ];
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++ ) { if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) {
7347 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { }
7350  
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++ ) { // force browsers to behave consistently when non-matching value is set
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++ ) { if ( !optionSet ) {
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++ ) { elem.selectedIndex = -1;
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { }
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++ ) { }
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++ ) {});
7360  
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++ ) {// Radios and checkboxes getter/setter
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++ ) {jQuery.each([ "radio", "checkbox" ], function() {
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++ ) { jQuery.valHooks[ this ] = {
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++ ) { set: function( elem, value ) {
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++ ) { if ( jQuery.isArray( value ) ) {
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++ ) { return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
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++ ) { }
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++ ) { };
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++ ) { if ( !support.checkOn ) {
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++ ) { jQuery.valHooks[ this ].get = function( elem ) {
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++ ) { // Support: Webkit
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++ ) { // "" is returned instead of "on" if a value isn't specified
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++ ) { return elem.getAttribute("value") === null ? "on" : elem.value;
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++ ) { };
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++ ) { }
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++ ) {});
7378  
7379  
7380  
7381  
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++ ) {// Return jQuery for attributes-only inclusion
7383  
7384  
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++ ) {jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
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++ ) { "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
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++ ) { "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
7388  
7389 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { jQuery.fn[ name ] = function( data, fn ) {
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++ ) { return arguments.length > 0 ?
7392 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) :
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++ ) { this.trigger( name );
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++ ) { };
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++ ) {});
7396  
7397 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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({
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++ ) { hover: function( fnOver, fnOut ) {
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++ ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
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  
7402 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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 this.on( types, null, data, fn );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { return this.off( types, null, fn );
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++ ) { },
7408  
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++ ) { delegate: function( selector, types, data, fn ) {
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++ ) { return this.on( types, selector, data, fn );
7411 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
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++ ) { undelegate: function( selector, types, fn ) {
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++ ) { // ( namespace ) or ( selector, types [, fn] )
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++ ) { return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
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++ ) { }
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  
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++ ) {var nonce = jQuery.now();
7420  
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++ ) {var rquery = (/\?/);
7422  
7423  
7424  
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++ ) {// Support: Android 2.3
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++ ) {// Workaround failure to string-cast null input
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++ ) {jQuery.parseJSON = function( data ) {
7428 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 + "" );
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++ ) {};
7430  
7431  
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++ ) {// Cross-browser xml parsing
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++ ) {jQuery.parseXML = function( data ) {
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++ ) { var xml, tmp;
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++ ) { if ( !data || typeof data !== "string" ) {
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++ ) { return null;
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  
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++ ) { // Support: IE9
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++ ) { try {
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++ ) { tmp = new DOMParser();
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++ ) { xml = tmp.parseFromString( data, "text/xml" );
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++ ) { } catch ( e ) {
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++ ) { xml = undefined;
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
7448 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
7449 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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 xml;
7451 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
7452  
7453  
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++ ) {var
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++ ) { // Document location
7456 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { ajaxLocation,
7458  
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++ ) { rhash = /#.*$/,
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++ ) { rts = /([?&])_=[^&]*/,
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++ ) { rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
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++ ) { // #7653, #8125, #8152: local protocol detection
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++ ) { rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
7464 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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)$/,
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++ ) { rprotocol = /^\/\//,
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++ ) { rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
7467  
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++ ) { /* Prefilters
7469 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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)
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++ ) { * 2) These are called:
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++ ) { * - BEFORE asking for a transport
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++ ) { * - AFTER param serialization (s.data is a string if s.processData is true)
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++ ) { * 3) key is the dataType
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++ ) { * 4) the catchall symbol "*" can be used
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++ ) { * 5) execution will start with transport dataType and THEN continue down to "*" if needed
7476 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
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++ ) { prefilters = {},
7478  
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++ ) { /* Transports bindings
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++ ) { * 1) key is the dataType
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++ ) { * 2) the catchall symbol "*" can be used
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++ ) { * 3) selection will start with transport dataType and THEN go to "*" if needed
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++ ) { transports = {},
7485  
7486 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { allTypes = "*/".concat("*");
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++ ) {// #8138, IE may throw an exception when accessing
7490 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
7491 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
7492 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) {} catch( e ) {
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++ ) { // Use the href attribute of an A element
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++ ) { // since IE will modify it given document.location
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++ ) { ajaxLocation = document.createElement( "a" );
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++ ) { ajaxLocation.href = "";
7498 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
7499 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7500  
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++ ) {// Segment location into parts
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++ ) {ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
7503  
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++ ) {// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
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++ ) {function addToPrefiltersOrTransports( structure ) {
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++ ) { // dataTypeExpression is optional and defaults to "*"
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++ ) { return function( dataTypeExpression, func ) {
7509  
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++ ) { if ( typeof dataTypeExpression !== "string" ) {
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++ ) { func = dataTypeExpression;
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++ ) { dataTypeExpression = "*";
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++ ) { var dataType,
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++ ) { i = 0,
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++ ) { dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
7518  
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++ ) { if ( jQuery.isFunction( func ) ) {
7520 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
7521 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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++]) ) {
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++ ) { // Prepend if requested
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++ ) { if ( dataType[0] === "+" ) {
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++ ) { dataType = dataType.slice( 1 ) || "*";
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++ ) { (structure[ dataType ] = structure[ dataType ] || []).unshift( func );
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++ ) { // Otherwise append
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++ ) { } else {
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++ ) { (structure[ dataType ] = structure[ dataType ] || []).push( func );
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++ ) { }
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++ ) { }
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++ ) { }
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++ ) { };
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++ ) {}
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++ ) {// Base inspection function for prefilters and transports
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++ ) {function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
7538  
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++ ) { var inspected = {},
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++ ) { seekingTransport = ( structure === transports );
7541  
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++ ) { function inspect( dataType ) {
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++ ) { var selected;
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++ ) { inspected[ dataType ] = true;
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++ ) { jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
7546 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
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++ ) { options.dataTypes.unshift( dataTypeOrTransport );
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++ ) { inspect( dataTypeOrTransport );
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++ ) { return false;
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++ ) { } else if ( seekingTransport ) {
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++ ) { return !( selected = dataTypeOrTransport );
7553 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { });
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++ ) { return selected;
7556 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7557  
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++ ) { return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
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++ ) {}
7560  
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++ ) {// A special extend for ajax options
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++ ) {// that takes "flat" options (not to be deep extended)
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++ ) {// Fixes #9887
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++ ) {function ajaxExtend( target, src ) {
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++ ) { var key, deep,
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++ ) { flatOptions = jQuery.ajaxSettings.flatOptions || {};
7567  
7568 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { if ( src[ key ] !== undefined ) {
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++ ) { ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
7571 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
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++ ) { if ( deep ) {
7574 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { }
7576  
7577 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) {}
7579  
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++ ) {/* Handles responses to an ajax request:
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++ ) { * - finds the right dataType (mediates between content-type and expected dataType)
7582 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { */
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++ ) {function ajaxHandleResponses( s, jqXHR, responses ) {
7585  
7586 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { contents = s.contents,
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++ ) { dataTypes = s.dataTypes;
7589  
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++ ) { // Remove auto dataType and get content-type in the process
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++ ) { while ( dataTypes[ 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++ ) { dataTypes.shift();
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++ ) { if ( ct === undefined ) {
7594 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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");
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++ ) { }
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++ ) { }
7597  
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++ ) { // Check if we're dealing with a known content-type
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++ ) { if ( ct ) {
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++ ) { for ( type in contents ) {
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++ ) { if ( contents[ type ] && contents[ type ].test( ct ) ) {
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++ ) { dataTypes.unshift( type );
7603 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { }
7606 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7607  
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++ ) { // Check to see if we have a response for the expected dataType
7609 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { finalDataType = dataTypes[ 0 ];
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++ ) { } else {
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++ ) { // Try convertible dataTypes
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++ ) { for ( type in responses ) {
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++ ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
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++ ) { finalDataType = type;
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++ ) { break;
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++ ) { }
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++ ) { if ( !firstDataType ) {
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++ ) { firstDataType = type;
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++ ) { }
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++ ) { // Or just use first one
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++ ) { finalDataType = finalDataType || firstDataType;
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++ ) { // If we found a dataType
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++ ) { // We add the dataType to the list if needed
7628 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( finalDataType ) {
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++ ) { if ( finalDataType !== dataTypes[ 0 ] ) {
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++ ) { dataTypes.unshift( finalDataType );
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++ ) { }
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++ ) { return responses[ finalDataType ];
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++ ) { }
7635 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7636  
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++ ) {/* Chain conversions given the request and the original response
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++ ) { * Also sets the responseXXX fields on the jqXHR instance
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++ ) {function ajaxConvert( s, response, jqXHR, isSuccess ) {
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++ ) { var conv2, current, conv, tmp, prev,
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++ ) { converters = {},
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++ ) { // Work with a copy of dataTypes in case we need to modify it for conversion
7644 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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();
7645  
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++ ) { // Create converters map with lowercased keys
7647 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ] ) {
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++ ) { for ( conv in s.converters ) {
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++ ) { converters[ conv.toLowerCase() ] = s.converters[ conv ];
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++ ) { }
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  
7653 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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();
7654  
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++ ) { // Convert to each sequential dataType
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++ ) { while ( current ) {
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++ ) { if ( s.responseFields[ current ] ) {
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++ ) { jqXHR[ s.responseFields[ current ] ] = response;
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++ ) { }
7661  
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++ ) { // Apply the dataFilter if provided
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++ ) { if ( !prev && isSuccess && s.dataFilter ) {
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++ ) { response = s.dataFilter( response, s.dataType );
7665 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7666  
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++ ) { prev = current;
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++ ) { current = dataTypes.shift();
7669  
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++ ) { if ( current ) {
7671  
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++ ) { // There's only work to do if current dataType is non-auto
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++ ) { if ( current === "*" ) {
7674  
7675 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
7676  
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++ ) { // Convert response if prev dataType is non-auto and differs from current
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++ ) { } else if ( prev !== "*" && prev !== current ) {
7679  
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++ ) { // Seek a direct converter
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++ ) { conv = converters[ prev + " " + current ] || converters[ "* " + current ];
7682  
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++ ) { // If none found, seek a pair
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++ ) { if ( !conv ) {
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++ ) { for ( conv2 in converters ) {
7686  
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++ ) { // If conv2 outputs current
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++ ) { tmp = conv2.split( " " );
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++ ) { if ( tmp[ 1 ] === current ) {
7690  
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++ ) { // If prev can be converted to accepted input
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++ ) { conv = converters[ prev + " " + tmp[ 0 ] ] ||
7693 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ] ];
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 ( conv ) {
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++ ) { // Condense equivalence converters
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++ ) { if ( conv === true ) {
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++ ) { conv = converters[ conv2 ];
7698  
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++ ) { // Otherwise, insert the intermediate dataType
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++ ) { } else if ( converters[ conv2 ] !== true ) {
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++ ) { current = tmp[ 0 ];
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++ ) { dataTypes.unshift( tmp[ 1 ] );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { }
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++ ) { }
7709  
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++ ) { // Apply converter (if not an equivalence)
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++ ) { if ( conv !== true ) {
7712  
7713 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( conv && s[ "throws" ] ) {
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++ ) { response = conv( response );
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++ ) { } else {
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++ ) { try {
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++ ) { response = conv( response );
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++ ) { } catch ( e ) {
7720 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 };
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++ ) { }
7722 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
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++ ) { }
7725 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
7727  
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++ ) { return { state: "success", data: response };
7729 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {}
7730  
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++ ) {jQuery.extend({
7732  
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++ ) { // Counter for holding the number of active queries
7734 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
7735  
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++ ) { // Last-Modified header cache for next request
7737 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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: {},
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++ ) { etag: {},
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++ ) { ajaxSettings: {
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++ ) { url: ajaxLocation,
7742 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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",
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++ ) { isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
7744 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { processData: true,
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++ ) { async: true,
7747 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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",
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++ ) { /*
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++ ) { timeout: 0,
7750 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { dataType: null,
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++ ) { username: null,
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++ ) { password: null,
7754 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { throws: false,
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++ ) { traditional: false,
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++ ) { headers: {},
7758 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
7759  
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++ ) { accepts: {
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++ ) { "*": allTypes,
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++ ) { text: "text/plain",
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++ ) { html: "text/html",
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++ ) { xml: "application/xml, text/xml",
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++ ) { json: "application/json, text/javascript"
7766 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7767  
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++ ) { contents: {
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++ ) { xml: /xml/,
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++ ) { html: /html/,
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++ ) { json: /json/
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++ ) { },
7773  
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++ ) { responseFields: {
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++ ) { xml: "responseXML",
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++ ) { text: "responseText",
7777 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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"
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++ ) { },
7779  
7780 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { // Keys separate source (or catchall "*") and destination types with a single space
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++ ) { converters: {
7783  
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++ ) { // Convert anything to text
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++ ) { "* text": String,
7786  
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++ ) { // Text to html (true = no transformation)
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++ ) { "text html": true,
7789  
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++ ) { // Evaluate text as a json expression
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++ ) { "text json": jQuery.parseJSON,
7792  
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++ ) { // Parse text as xml
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++ ) { "text xml": jQuery.parseXML
7795 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
7796  
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++ ) { // For options that shouldn't be deep extended:
7798 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { // and when you create one that shouldn't be
7800 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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)
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++ ) { flatOptions: {
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++ ) { url: true,
7803 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { }
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++ ) { },
7806  
7807 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { // with both ajaxSettings and settings fields.
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++ ) { // If target is omitted, writes into ajaxSettings.
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++ ) { ajaxSetup: function( target, settings ) {
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++ ) { return settings ?
7812  
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++ ) { // Building a settings object
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++ ) { ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
7815  
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++ ) { // Extending ajaxSettings
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++ ) { ajaxExtend( jQuery.ajaxSettings, target );
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++ ) { },
7819  
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++ ) { ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
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++ ) { ajaxTransport: addToPrefiltersOrTransports( transports ),
7822  
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++ ) { // Main method
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++ ) { ajax: function( url, options ) {
7825  
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++ ) { // If url is an object, simulate pre-1.5 signature
7827 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" ) {
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++ ) { options = url;
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++ ) { url = undefined;
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++ ) { }
7831  
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++ ) { // Force options to be an object
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++ ) { options = options || {};
7834  
7835 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { // URL without anti-cache param
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++ ) { cacheURL,
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++ ) { // Response headers
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++ ) { responseHeadersString,
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++ ) { responseHeaders,
7841 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { timeoutTimer,
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++ ) { // Cross-domain detection vars
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++ ) { parts,
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++ ) { // To know if global events are to be dispatched
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++ ) { fireGlobals,
7847 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { i,
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++ ) { // Create the final options object
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++ ) { s = jQuery.ajaxSetup( {}, options ),
7851 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { callbackContext = s.context || s,
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++ ) { // Context for global events is callbackContext if it is a DOM node or jQuery collection
7854 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) ?
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++ ) { jQuery( callbackContext ) :
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++ ) { jQuery.event,
7857 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { deferred = jQuery.Deferred(),
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++ ) { completeDeferred = jQuery.Callbacks("once memory"),
7860 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { statusCode = s.statusCode || {},
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++ ) { // Headers (they are sent all at once)
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++ ) { requestHeaders = {},
7864 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 = {},
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++ ) { // The jqXHR state
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++ ) { state = 0,
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++ ) { // Default abort message
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++ ) { strAbort = "canceled",
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++ ) { // Fake xhr
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++ ) { jqXHR = {
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++ ) { readyState: 0,
7872  
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++ ) { // Builds headers hashtable if needed
7874 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { var match;
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++ ) { if ( state === 2 ) {
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 ( !responseHeaders ) {
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++ ) { responseHeaders = {};
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++ ) { while ( (match = rheaders.exec( responseHeadersString )) ) {
7880 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ];
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++ ) { }
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++ ) { }
7883 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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() ];
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++ ) { }
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++ ) { return match == null ? null : match;
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++ ) { // Raw string
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++ ) { getAllResponseHeaders: function() {
7890 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { },
7892  
7893 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { setRequestHeader: function( name, value ) {
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++ ) { var lname = name.toLowerCase();
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++ ) { if ( !state ) {
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++ ) { name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
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++ ) { requestHeaders[ name ] = value;
7899 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { return this;
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++ ) { },
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++ ) { // Overrides response content-type header
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++ ) { overrideMimeType: function( type ) {
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++ ) { if ( !state ) {
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++ ) { s.mimeType = type;
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++ ) { }
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++ ) { return this;
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++ ) { },
7910  
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++ ) { // Status-dependent callbacks
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++ ) { statusCode: function( map ) {
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++ ) { var code;
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++ ) { if ( map ) {
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++ ) { if ( state < 2 ) {
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++ ) { for ( code in map ) {
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++ ) { // Lazy-add the new callback in a way that preserves old ones
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++ ) { statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
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++ ) { }
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++ ) { } else {
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++ ) { // Execute the appropriate callbacks
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++ ) { jqXHR.always( map[ jqXHR.status ] );
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++ ) { }
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++ ) { }
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++ ) { return this;
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++ ) { },
7927  
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++ ) { // Cancel the request
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++ ) { abort: function( statusText ) {
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++ ) { var finalText = statusText || strAbort;
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++ ) { if ( transport ) {
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++ ) { transport.abort( finalText );
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++ ) { }
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++ ) { done( 0, finalText );
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++ ) { return this;
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++ ) { }
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++ ) { };
7938  
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++ ) { // Attach deferreds
7940 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { jqXHR.success = jqXHR.done;
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++ ) { jqXHR.error = jqXHR.fail;
7943  
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++ ) { // Remove hash character (#7531: and string promotion)
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++ ) { // Add protocol if not provided (prefilters might expect it)
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++ ) { // Handle falsy url in the settings object (#10093: consistency with old signature)
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++ ) { // We also use the url parameter if available
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++ ) { s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" )
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++ ) { .replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
7950  
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++ ) { // Alias method option to type as per ticket #12004
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++ ) { s.type = options.method || options.type || s.method || s.type;
7953  
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++ ) { // Extract dataTypes list
7955 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) || [ "" ];
7956  
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++ ) { // A cross-domain request is in order when we have a protocol:host:port mismatch
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++ ) { if ( s.crossDomain == 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++ ) { parts = rurl.exec( s.url.toLowerCase() );
7960 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 &&
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++ ) { ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
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++ ) { ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
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++ ) { ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
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++ ) { );
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++ ) { }
7966  
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++ ) { // Convert data if not already a string
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++ ) { if ( s.data && s.processData && typeof s.data !== "string" ) {
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++ ) { s.data = jQuery.param( s.data, s.traditional );
7970 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7971  
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++ ) { // Apply prefilters
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++ ) { inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
7974  
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++ ) { // If request was aborted inside a prefilter, stop there
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++ ) { if ( state === 2 ) {
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++ ) { return jqXHR;
7978 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
7979  
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++ ) { // We can fire global events as of now if asked to
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++ ) { fireGlobals = s.global;
7982  
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++ ) { // Watch for a new set of requests
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++ ) { if ( fireGlobals && jQuery.active++ === 0 ) {
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++ ) { jQuery.event.trigger("ajaxStart");
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++ ) { }
7987  
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++ ) { // Uppercase the type
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++ ) { s.type = s.type.toUpperCase();
7990  
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++ ) { // Determine if request has content
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++ ) { s.hasContent = !rnoContent.test( s.type );
7993  
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++ ) { // Save the URL in case we're toying with the If-Modified-Since
7995 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { cacheURL = s.url;
7997  
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++ ) { // More options handling for requests with no content
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 ( !s.hasContent ) {
8000  
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++ ) { // If data is available, append data to url
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++ ) { if ( s.data ) {
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++ ) { cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
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++ ) { // #9682: remove data so that it's not used in an eventual retry
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++ ) { delete s.data;
8006 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8007  
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++ ) { // Add anti-cache in url if needed
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++ ) { if ( s.cache === false ) {
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++ ) { s.url = rts.test( cacheURL ) ?
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++ ) { // If there is already a '_' parameter, set its value
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++ ) { cacheURL.replace( rts, "$1_=" + nonce++ ) :
8014  
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++ ) { // Otherwise add one to the end
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++ ) { cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
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++ ) { }
8018 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8019  
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++ ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
8021 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { if ( jQuery.lastModified[ cacheURL ] ) {
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++ ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
8024 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { if ( jQuery.etag[ cacheURL ] ) {
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++ ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
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++ ) { }
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++ ) { }
8029  
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++ ) { // Set the correct header, if data is being sent
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++ ) { if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
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++ ) { jqXHR.setRequestHeader( "Content-Type", s.contentType );
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++ ) { // Set the Accepts header for the server, depending on the dataType
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++ ) { jqXHR.setRequestHeader(
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++ ) { "Accept",
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++ ) { s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
8039 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" : "" ) :
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++ ) { s.accepts[ "*" ]
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++ ) { );
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++ ) { // Check for headers option
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++ ) { for ( i in s.headers ) {
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++ ) { jqXHR.setRequestHeader( i, s.headers[ i ] );
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++ ) { // Allow custom headers/mimetypes and early abort
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++ ) { if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
8050 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { return jqXHR.abort();
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++ ) { }
8053  
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++ ) { // aborting is no longer a cancellation
8055 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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";
8056  
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++ ) { // Install callbacks on deferreds
8058 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 } ) {
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++ ) { jqXHR[ i ]( s[ i ] );
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++ ) { }
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++ ) { // Get transport
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++ ) { transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
8064  
8065 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( !transport ) {
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++ ) { done( -1, "No Transport" );
8068 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
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++ ) { jqXHR.readyState = 1;
8070  
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++ ) { // Send global event
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++ ) { if ( fireGlobals ) {
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++ ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( s.async && s.timeout > 0 ) {
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++ ) { timeoutTimer = setTimeout(function() {
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++ ) { jqXHR.abort("timeout");
8079 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { }
8081  
8082 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
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++ ) { state = 1;
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++ ) { transport.send( requestHeaders, done );
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++ ) { } catch ( e ) {
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++ ) { // Propagate exception as error if not done
8087 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { done( -1, e );
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++ ) { // Simply rethrow otherwise
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++ ) { } else {
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++ ) { throw e;
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++ ) { }
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++ ) { }
8095  
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++ ) { // Callback for when everything is done
8097 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { var isSuccess, success, error, response, modified,
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++ ) { statusText = nativeStatusText;
8100  
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++ ) { // Called once
8102 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { return;
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++ ) { }
8105  
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++ ) { // State is "done" now
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++ ) { state = 2;
8108  
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++ ) { // Clear timeout if it exists
8110 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { clearTimeout( timeoutTimer );
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++ ) { }
8113  
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++ ) { // Dereference transport for early garbage collection
8115 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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)
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++ ) { transport = undefined;
8117  
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++ ) { // Cache response headers
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++ ) { responseHeadersString = headers || "";
8120  
8121 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { jqXHR.readyState = status > 0 ? 4 : 0;
8123  
8124 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { isSuccess = status >= 200 && status < 300 || status === 304;
8126  
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++ ) { // Get response data
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++ ) { if ( responses ) {
8129 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { }
8131  
8132 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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)
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++ ) { response = ajaxConvert( s, response, jqXHR, isSuccess );
8134  
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++ ) { // If successful, handle type chaining
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++ ) { if ( isSuccess ) {
8137  
8138 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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.
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++ ) { if ( s.ifModified ) {
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++ ) { modified = jqXHR.getResponseHeader("Last-Modified");
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++ ) { if ( modified ) {
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++ ) { jQuery.lastModified[ cacheURL ] = modified;
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++ ) { }
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++ ) { modified = jqXHR.getResponseHeader("etag");
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++ ) { if ( modified ) {
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++ ) { jQuery.etag[ cacheURL ] = modified;
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++ ) { }
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++ ) { // if no content
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++ ) { if ( status === 204 || s.type === "HEAD" ) {
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++ ) { statusText = "nocontent";
8153  
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++ ) { // if not modified
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++ ) { } else if ( status === 304 ) {
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++ ) { statusText = "notmodified";
8157  
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++ ) { // If we have data, let's convert it
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++ ) { } else {
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++ ) { statusText = response.state;
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++ ) { success = response.data;
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++ ) { error = response.error;
8163 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { } else {
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++ ) { // We extract error from statusText
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++ ) { // then normalize statusText and status for non-aborts
8168 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { if ( status || !statusText ) {
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++ ) { statusText = "error";
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++ ) { if ( status < 0 ) {
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++ ) { status = 0;
8173 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
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++ ) { }
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++ ) { // Set data for the fake xhr object
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++ ) { jqXHR.status = status;
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++ ) { jqXHR.statusText = ( nativeStatusText || statusText ) + "";
8180  
8181 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( isSuccess ) {
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++ ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
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++ ) { } else {
8185 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ] );
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++ ) { }
8187  
8188 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { jqXHR.statusCode( statusCode );
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++ ) { statusCode = undefined;
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++ ) { if ( fireGlobals ) {
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++ ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
8194 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ] );
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++ ) { }
8196  
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++ ) { // Complete
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++ ) { completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
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++ ) { if ( fireGlobals ) {
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++ ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
8202 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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 ( !( --jQuery.active ) ) {
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++ ) { jQuery.event.trigger("ajaxStop");
8205 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
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++ ) { }
8208  
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++ ) { return jqXHR;
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++ ) { },
8211  
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++ ) { getJSON: function( url, data, callback ) {
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++ ) { return jQuery.get( url, data, callback, "json" );
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++ ) { },
8215  
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++ ) { getScript: function( url, callback ) {
8217 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" );
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++ ) { }
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++ ) {});
8220  
8221 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { jQuery[ method ] = function( url, data, callback, type ) {
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++ ) { // shift arguments if data argument was omitted
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++ ) { if ( jQuery.isFunction( data ) ) {
8225 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { callback = data;
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++ ) { data = undefined;
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++ ) { }
8229  
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++ ) { return jQuery.ajax({
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++ ) { url: url,
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++ ) { type: method,
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++ ) { dataType: type,
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++ ) { data: data,
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++ ) { success: callback
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++ ) { });
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++ ) { };
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++ ) {});
8239  
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++ ) {// Attach a bunch of functions for handling common AJAX events
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++ ) {jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
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++ ) { jQuery.fn[ type ] = function( fn ) {
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++ ) { return this.on( type, fn );
8244 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
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++ ) {});
8246  
8247  
8248 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { return jQuery.ajax({
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++ ) { url: url,
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++ ) { type: "GET",
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++ ) { dataType: "script",
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++ ) { async: false,
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++ ) { global: false,
8255 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { });
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++ ) {};
8258  
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++ ) {jQuery.fn.extend({
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++ ) { wrapAll: function( html ) {
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++ ) { var wrap;
8263  
8264 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) ) {
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++ ) { return this.each(function( i ) {
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++ ) { jQuery( this ).wrapAll( html.call(this, i) );
8267 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
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++ ) { }
8269  
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++ ) { if ( this[ 0 ] ) {
8271  
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++ ) { // The elements to wrap the target around
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++ ) { wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
8274  
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++ ) { if ( this[ 0 ].parentNode ) {
8276 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ] );
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++ ) { }
8278  
8279 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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() {
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++ ) { var elem = this;
8281  
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++ ) { while ( elem.firstElementChild ) {
8283 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
8285  
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++ ) { return elem;
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++ ) { }).append( this );
8288 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8289  
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++ ) { return this;
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++ ) { },
8292  
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++ ) { wrapInner: function( html ) {
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++ ) { if ( jQuery.isFunction( html ) ) {
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++ ) { return this.each(function( i ) {
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++ ) { jQuery( this ).wrapInner( html.call(this, i) );
8297 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
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++ ) { }
8299  
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++ ) { return this.each(function() {
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++ ) { var self = jQuery( this ),
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++ ) { contents = self.contents();
8303  
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++ ) { if ( contents.length ) {
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++ ) { contents.wrapAll( html );
8306  
8307 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
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++ ) { self.append( html );
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++ ) { }
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++ ) { });
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++ ) { },
8312  
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++ ) { wrap: function( html ) {
8314 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { return this.each(function( i ) {
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++ ) { jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
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++ ) { });
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++ ) { },
8320  
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++ ) { unwrap: function() {
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++ ) { return this.parent().each(function() {
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++ ) { if ( !jQuery.nodeName( this, "body" ) ) {
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++ ) { jQuery( this ).replaceWith( this.childNodes );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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();
8327 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {});
8329  
8330  
8331 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { // Support: Opera <= 12.12
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++ ) { // Opera reports offsetWidths and offsetHeights less than zero on some elements
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++ ) { return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
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++ ) {jQuery.expr.filters.visible = function( elem ) {
8337 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) {};
8339  
8340  
8341  
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++ ) {var r20 = /%20/g,
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++ ) { rbracket = /\[\]$/,
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++ ) { rCRLF = /\r?\n/g,
8346 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { rsubmittable = /^(?:input|select|textarea|keygen)/i;
8348  
8349 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { var name;
8351  
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++ ) { if ( jQuery.isArray( obj ) ) {
8353 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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.
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++ ) { jQuery.each( obj, function( i, v ) {
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++ ) { if ( traditional || rbracket.test( prefix ) ) {
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++ ) { // Treat each array item as a scalar.
8357 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
8358  
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++ ) { } else {
8360 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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.
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++ ) { buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
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++ ) { }
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++ ) { });
8364  
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++ ) { } else if ( !traditional && jQuery.type( obj ) === "object" ) {
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++ ) { // Serialize object item.
8367 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
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++ ) { }
8370  
8371 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
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++ ) { // Serialize scalar item.
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++ ) { add( prefix, obj );
8374 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) {}
8376  
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++ ) {// Serialize an array of form elements or a set of
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++ ) {// key/values into a query string
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++ ) {jQuery.param = function( a, traditional ) {
8380 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { s = [],
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++ ) { add = function( key, value ) {
8383 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
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++ ) { s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
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  
8388 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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.
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++ ) { if ( traditional === undefined ) {
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++ ) { traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
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++ ) { }
8392  
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++ ) { // If an array was passed in, assume that it is an array of form elements.
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++ ) { if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
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++ ) { // Serialize the form elements
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++ ) { jQuery.each( a, function() {
8397 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
8398 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
8399  
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++ ) { } else {
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++ ) { // If traditional, encode the "old" way (the way 1.3.2 or older
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++ ) { // did it), otherwise encode params recursively.
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++ ) { for ( prefix in a ) {
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++ ) { buildParams( prefix, a[ prefix ], traditional, add );
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++ ) { }
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
8409 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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, "+" );
8410 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
8411  
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++ ) {jQuery.fn.extend({
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++ ) { serialize: function() {
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++ ) { return jQuery.param( this.serializeArray() );
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++ ) { },
8416 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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() {
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++ ) { return this.map(function() {
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++ ) { // Can add propHook for "elements" to filter or add form elements
8419 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" );
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++ ) { return elements ? jQuery.makeArray( elements ) : this;
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++ ) { })
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++ ) { .filter(function() {
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++ ) { var type = this.type;
8424  
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++ ) { // Use .is( ":disabled" ) so that fieldset[disabled] works
8426 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" ) &&
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++ ) { rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
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++ ) { ( this.checked || !rcheckableType.test( type ) );
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++ ) { })
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++ ) { .map(function( i, elem ) {
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++ ) { var val = jQuery( this ).val();
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++ ) { return val == null ?
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++ ) { null :
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++ ) { jQuery.isArray( val ) ?
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++ ) { jQuery.map( val, function( val ) {
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++ ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
8438 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }) :
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++ ) { { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
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++ ) { }).get();
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++ ) { }
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  
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++ ) {jQuery.ajaxSettings.xhr = function() {
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++ ) { try {
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++ ) { return new XMLHttpRequest();
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++ ) { } catch( e ) {}
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++ ) {};
8450  
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++ ) {var xhrId = 0,
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++ ) { xhrCallbacks = {},
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++ ) { xhrSuccessStatus = {
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++ ) { // file protocol always yields status code 0, assume 200
8455 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { // Support: IE9
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++ ) { // #1450: sometimes IE returns 1223 when it should be 204
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++ ) { 1223: 204
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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();
8461  
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++ ) {// Support: IE9
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++ ) {// Open requests must be manually aborted on unload (#5280)
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++ ) {if ( window.ActiveXObject ) {
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++ ) { jQuery( window ).on( "unload", function() {
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++ ) { for ( var key in xhrCallbacks ) {
8467 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ]();
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++ ) { }
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++ ) { });
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++ ) {}
8471  
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++ ) {support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
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++ ) {support.ajax = xhrSupported = !!xhrSupported;
8474  
8475 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { var callback;
8477  
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++ ) { // Cross domain only allowed if supported through XMLHttpRequest
8479 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { return {
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++ ) { send: function( headers, complete ) {
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++ ) { var i,
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++ ) { xhr = options.xhr(),
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++ ) { id = ++xhrId;
8485  
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++ ) { xhr.open( options.type, options.url, options.async, options.username, options.password );
8487  
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++ ) { // Apply custom fields if provided
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++ ) { if ( options.xhrFields ) {
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++ ) { for ( i in options.xhrFields ) {
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++ ) { xhr[ i ] = options.xhrFields[ i ];
8492 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
8494  
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++ ) { // Override mime type if needed
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++ ) { if ( options.mimeType && xhr.overrideMimeType ) {
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++ ) { xhr.overrideMimeType( options.mimeType );
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++ ) { }
8499  
8500 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { // For cross-domain requests, seeing as conditions for a preflight are
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++ ) { // akin to a jigsaw puzzle, we simply never set it to be sure.
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++ ) { // (it can always be set on a per-request basis or even using ajaxSetup)
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++ ) { // For same-domain requests, won't change header if already provided.
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++ ) { if ( !options.crossDomain && !headers["X-Requested-With"] ) {
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++ ) { headers["X-Requested-With"] = "XMLHttpRequest";
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++ ) { }
8508  
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++ ) { // Set headers
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++ ) { for ( i in headers ) {
8511 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ] );
8512 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8513  
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++ ) { // Callback
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++ ) { callback = function( type ) {
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++ ) { return function() {
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++ ) { if ( callback ) {
8518 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ];
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++ ) { callback = xhr.onload = xhr.onerror = null;
8520  
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++ ) { if ( type === "abort" ) {
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++ ) { xhr.abort();
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++ ) { } else if ( type === "error" ) {
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++ ) { complete(
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++ ) { // file: protocol always yields status 0; see #8605, #14207
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++ ) { xhr.status,
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++ ) { xhr.statusText
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++ ) { );
8529 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
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++ ) { complete(
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++ ) { xhrSuccessStatus[ xhr.status ] || xhr.status,
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++ ) { xhr.statusText,
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++ ) { // Support: IE9
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++ ) { // Accessing binary-data responseText throws an exception
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++ ) { // (#11426)
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++ ) { typeof xhr.responseText === "string" ? {
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++ ) { text: xhr.responseText
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++ ) { } : undefined,
8539 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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()
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++ ) { );
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++ ) { }
8542 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { };
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++ ) { };
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++ ) { // Listen to events
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++ ) { xhr.onload = callback();
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++ ) { xhr.onerror = callback("error");
8549  
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++ ) { // Create the abort callback
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++ ) { callback = xhrCallbacks[ id ] = callback("abort");
8552  
8553 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { // This may raise an exception which is actually
8555 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { // handled in jQuery.ajax (so no try/catch here)
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++ ) { xhr.send( options.hasContent && options.data || null );
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++ ) { },
8558  
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++ ) { abort: function() {
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++ ) { if ( callback ) {
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++ ) { callback();
8562 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { }
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++ ) { };
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++ ) { }
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  
8569  
8570  
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++ ) {// Install script dataType
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++ ) {jQuery.ajaxSetup({
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++ ) { accepts: {
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++ ) { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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: {
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++ ) { script: /(?:java|ecma)script/
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++ ) { },
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++ ) { converters: {
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++ ) { "text script": function( text ) {
8581 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { return text;
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++ ) { }
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++ ) { }
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++ ) {});
8586  
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++ ) {// Handle cache's special case and crossDomain
8588 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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 ( s.cache === undefined ) {
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++ ) { s.cache = false;
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++ ) { }
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++ ) { if ( s.crossDomain ) {
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++ ) { s.type = "GET";
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++ ) { }
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++ ) {});
8596  
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++ ) {// Bind script tag hack transport
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++ ) {jQuery.ajaxTransport( "script", function( s ) {
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++ ) { // This transport only deals with cross domain requests
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++ ) { if ( s.crossDomain ) {
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++ ) { var script, callback;
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++ ) { return {
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++ ) { send: function( _, complete ) {
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++ ) { script = jQuery("<script>").prop({
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++ ) { async: true,
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++ ) { charset: s.scriptCharset,
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++ ) { src: s.url
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++ ) { }).on(
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++ ) { "load error",
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++ ) { callback = function( evt ) {
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++ ) { script.remove();
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++ ) { callback = null;
8613 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { complete( evt.type === "error" ? 404 : 200, evt.type );
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++ ) { }
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++ ) { }
8617 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
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++ ) { document.head.appendChild( script[ 0 ] );
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++ ) { },
8620 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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() {
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++ ) { if ( callback ) {
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++ ) { callback();
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++ ) { }
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++ ) { }
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++ ) { };
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++ ) { }
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++ ) {});
8628  
8629  
8630  
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++ ) {var oldCallbacks = [],
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++ ) { rjsonp = /(=)\?(?=&|$)|\?\?/;
8634  
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++ ) {// Default jsonp settings
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++ ) {jQuery.ajaxSetup({
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++ ) { jsonp: "callback",
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++ ) { jsonpCallback: function() {
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++ ) { var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
8640 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
8641 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
8642 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8643 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8644  
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++ ) {// Detect, normalize options and install callbacks for jsonp requests
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++ ) {jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
8647  
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++ ) { var callbackName, overwritten, responseContainer,
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++ ) { jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
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++ ) { "url" :
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++ ) { typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
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++ ) { );
8653  
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++ ) { // Handle iff the expected data type is "jsonp" or we have a parameter to set
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++ ) { if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
8656  
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++ ) { // Get callback name, remembering preexisting value associated with it
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++ ) { callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
8659 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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() :
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++ ) { s.jsonpCallback;
8661  
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++ ) { // Insert callback into url or form data
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++ ) { if ( jsonProp ) {
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++ ) { s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
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++ ) { } else if ( s.jsonp !== false ) {
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.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
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  
8669 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { s.converters["script json"] = function() {
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++ ) { if ( !responseContainer ) {
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++ ) { jQuery.error( callbackName + " was not called" );
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++ ) { }
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++ ) { return responseContainer[ 0 ];
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++ ) { };
8676  
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++ ) { // force json dataType
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++ ) { s.dataTypes[ 0 ] = "json";
8679  
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++ ) { // Install callback
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++ ) { overwritten = window[ callbackName ];
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++ ) { window[ callbackName ] = function() {
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++ ) { responseContainer = arguments;
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++ ) { };
8685  
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++ ) { // Clean-up function (fires after converters)
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++ ) { jqXHR.always(function() {
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++ ) { // Restore preexisting value
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++ ) { window[ callbackName ] = overwritten;
8690  
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++ ) { // Save back as free
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++ ) { if ( s[ callbackName ] ) {
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++ ) { // make sure that re-using the options doesn't screw things around
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++ ) { s.jsonpCallback = originalSettings.jsonpCallback;
8695  
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++ ) { // save the callback name for future use
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++ ) { oldCallbacks.push( callbackName );
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  
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++ ) { // Call if it was a function and we have a response
8701 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) ) {
8702 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ] );
8703 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { responseContainer = overwritten = undefined;
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++ ) { });
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++ ) { // Delegate to script
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++ ) { return "script";
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++ ) { }
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++ ) {});
8712  
8713  
8714  
8715  
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++ ) {// data: string of html
8717 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) {// keepScripts (optional): If true, will include scripts passed in the html string
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.parseHTML = function( data, context, keepScripts ) {
8720 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" ) {
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++ ) { return null;
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++ ) { }
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++ ) { if ( typeof context === "boolean" ) {
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++ ) { keepScripts = context;
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++ ) { context = false;
8726 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { context = context || document;
8728  
8729 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ),
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++ ) { scripts = !keepScripts && [];
8731  
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++ ) { // Single tag
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++ ) { if ( parsed ) {
8734 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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] ) ];
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++ ) { }
8736  
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++ ) { parsed = jQuery.buildFragment( [ data ], context, scripts );
8738  
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++ ) { if ( scripts && scripts.length ) {
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++ ) { jQuery( scripts ).remove();
8741 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8742  
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++ ) { return jQuery.merge( [], parsed.childNodes );
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++ ) {};
8745  
8746  
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++ ) {// Keep a copy of the old load method
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++ ) {var _load = jQuery.fn.load;
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++ ) {/**
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++ ) { * Load a url into a page
8752 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { */
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++ ) {jQuery.fn.load = function( url, params, 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++ ) { if ( typeof url !== "string" && _load ) {
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++ ) { return _load.apply( this, arguments );
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++ ) { }
8757  
8758 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { self = this,
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++ ) { off = url.indexOf(" ");
8761  
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++ ) { if ( off >= 0 ) {
8763 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 = url.slice( off );
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++ ) { url = url.slice( 0, off );
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++ ) { }
8766  
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++ ) { // If it's a function
8768 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) ) {
8769  
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++ ) { // We assume that it's the callback
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++ ) { callback = params;
8772 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
8773  
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++ ) { // Otherwise, build a param string
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++ ) { } else if ( params && typeof params === "object" ) {
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++ ) { type = "POST";
8777 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8778  
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++ ) { // If we have elements to modify, make the request
8780 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { jQuery.ajax({
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++ ) { url: url,
8783  
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++ ) { // if "type" variable is undefined, then "GET" method will be used
8785 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
8786 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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",
8787 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
8788 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
8789  
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++ ) { // Save response for use in complete callback
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++ ) { response = arguments;
8792  
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++ ) { self.html( selector ?
8794  
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++ ) { // If a selector was specified, locate the right elements in a dummy div
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++ ) { // Exclude scripts to avoid IE 'Permission Denied' errors
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++ ) { jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
8798  
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++ ) { // Otherwise use the full result
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++ ) { responseText );
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++ ) { }).complete( callback && function( jqXHR, status ) {
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++ ) { self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
8804 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { });
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++ ) { }
8806  
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 this;
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  
8811  
8812  
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.expr.filters.animated = function( elem ) {
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++ ) { return jQuery.grep(jQuery.timers, function( fn ) {
8815 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }).length;
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  
8821  
8822 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
8823  
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++ ) {/**
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++ ) { * Gets a window from an element
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++ ) { */
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++ ) {function getWindow( elem ) {
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 jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
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++ ) {jQuery.offset = {
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++ ) { setOffset: function( elem, options, i ) {
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++ ) { var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
8834 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" ),
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++ ) { curElem = jQuery( elem ),
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++ ) { props = {};
8837  
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++ ) { // Set position first, in-case top/left are set even on static elem
8839 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" ) {
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++ ) { elem.style.position = "relative";
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++ ) { }
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++ ) { curOffset = curElem.offset();
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++ ) { curCSSTop = jQuery.css( elem, "top" );
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++ ) { curCSSLeft = jQuery.css( elem, "left" );
8846 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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" ) &&
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++ ) { ( curCSSTop + curCSSLeft ).indexOf("auto") > -1;
8848  
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++ ) { // Need to be able to calculate position if either top or left is auto and position is either absolute or fixed
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++ ) { if ( calculatePosition ) {
8851 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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();
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++ ) { curTop = curPosition.top;
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++ ) { curLeft = curPosition.left;
8854  
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++ ) { } else {
8856 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { curLeft = parseFloat( curCSSLeft ) || 0;
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++ ) { }
8859  
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++ ) { if ( jQuery.isFunction( options ) ) {
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++ ) { options = options.call( elem, i, curOffset );
8862 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8863  
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++ ) { if ( options.top != null ) {
8865 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
8867 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { props.left = ( options.left - curOffset.left ) + curLeft;
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++ ) { }
8870  
8871 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { options.using.call( elem, props );
8873  
8874 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
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++ ) { curElem.css( props );
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++ ) { }
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++ ) {jQuery.fn.extend({
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++ ) { offset: function( options ) {
8882 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
8883 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ?
8884 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 :
8885 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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.offset.setOffset( this, options, i );
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++ ) { });
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++ ) { }
8889  
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++ ) { var docElem, win,
8891 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ],
8892 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 },
8893 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { if ( !doc ) {
8896 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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  
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++ ) { docElem = doc.documentElement;
8900  
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++ ) { // Make sure it's not a disconnected DOM node
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++ ) { if ( !jQuery.contains( docElem, elem ) ) {
8903 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
8905  
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++ ) { // If we don't have gBCR, just use 0,0 rather than error
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++ ) { // BlackBerry 5, iOS 3 (original iPhone)
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++ ) { if ( typeof elem.getBoundingClientRect !== strundefined ) {
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++ ) { box = elem.getBoundingClientRect();
8910 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
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++ ) { win = getWindow( doc );
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++ ) { return {
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++ ) { top: box.top + win.pageYOffset - docElem.clientTop,
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++ ) { left: box.left + win.pageXOffset - docElem.clientLeft
8915 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { };
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++ ) { },
8917  
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++ ) { position: function() {
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++ ) { if ( !this[ 0 ] ) {
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++ ) { return;
8921 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
8922  
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++ ) { var offsetParent, offset,
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++ ) { elem = this[ 0 ],
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++ ) { parentOffset = { top: 0, left: 0 };
8926  
8927 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { if ( jQuery.css( elem, "position" ) === "fixed" ) {
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++ ) { // We assume that getBoundingClientRect is available when computed position is fixed
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++ ) { offset = elem.getBoundingClientRect();
8931  
8932 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 {
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++ ) { // Get *real* offsetParent
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++ ) { offsetParent = this.offsetParent();
8935  
8936 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { offset = this.offset();
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++ ) { if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
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++ ) { parentOffset = offsetParent.offset();
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++ ) { }
8941  
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++ ) { // Add offsetParent borders
8943 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
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++ ) { }
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++ ) { // Subtract parent offsets and element margins
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++ ) { return {
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++ ) { top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
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++ ) { left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { },
8953  
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++ ) { offsetParent: function() {
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++ ) { return this.map(function() {
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++ ) { var offsetParent = this.offsetParent || docElem;
8957  
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++ ) { while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) {
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++ ) { offsetParent = offsetParent.offsetParent;
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  
8962 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { });
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++ ) { }
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++ ) {});
8966  
8967 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) {jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
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++ ) { var top = "pageYOffset" === prop;
8970  
8971 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { return access( this, function( elem, method, val ) {
8973 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
8974  
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 ( val === undefined ) {
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 win ? win[ prop ] : elem[ method ];
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 ( win ) {
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++ ) { win.scrollTo(
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++ ) { !top ? val : window.pageXOffset,
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++ ) { top ? val : window.pageYOffset
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  
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++ ) { } else {
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++ ) { elem[ method ] = val;
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++ ) { }
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++ ) { }, method, val, arguments.length, null );
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
8991  
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++ ) {// Add the top/left cssHooks using jQuery.fn.position
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++ ) {// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
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++ ) {// getComputedStyle returns percent when specified for top/left/bottom/right
8995 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) {jQuery.each( [ "top", "left" ], function( i, prop ) {
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++ ) { jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
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++ ) { function( elem, computed ) {
8999 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { computed = curCSS( elem, prop );
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 curCSS returns percentage, fallback to offset
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++ ) { return rnumnonpx.test( computed ) ?
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++ ) { jQuery( elem ).position()[ prop ] + "px" :
9004 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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;
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++ ) { }
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++ ) { }
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++ ) { );
9008 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
9009  
9010  
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++ ) {// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
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++ ) {jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
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++ ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
9014 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) { jQuery.fn[ funcName ] = function( margin, value ) {
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++ ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
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++ ) { extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
9018  
9019 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { var doc;
9021  
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++ ) { if ( jQuery.isWindow( elem ) ) {
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++ ) { // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
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++ ) { // isn't a whole lot we can do. See pull request at this URL for discussion:
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++ ) { // https://github.com/jquery/jquery/pull/764
9026 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ];
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++ ) { }
9028  
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++ ) { // Get document width or height
9030 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 ) {
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++ ) { doc = elem.documentElement;
9032  
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++ ) { // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
9034 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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 Math.max(
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++ ) { elem.body[ "scroll" + name ], doc[ "scroll" + name ],
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++ ) { elem.body[ "offset" + name ], doc[ "offset" + name ],
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++ ) { doc[ "client" + name ]
9039 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { );
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++ ) { }
9041  
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++ ) { return value === undefined ?
9043 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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.css( elem, type, extra ) :
9045  
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++ ) { // Set width or height on the element
9047 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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 );
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++ ) { }, type, chainable ? margin : undefined, chainable, null );
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++ ) { };
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 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {});
9052  
9053  
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++ ) {// The number of elements contained in the matched element set
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++ ) {jQuery.fn.size = function() {
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++ ) { return this.length;
9057 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) {};
9058  
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++ ) {jQuery.fn.andSelf = jQuery.fn.addBack;
9060  
9061  
9062  
9063  
9064 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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
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++ ) {// files that may use define, but not via a proper concatenation script that
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++ ) {// understands anonymous AMD modules. A named AMD is safest and most robust
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++ ) {// way to register. Lowercase jquery is used because AMD module names are
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++ ) {// derived from file names, and jQuery is normally delivered in a lowercase
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++ ) {// file name. Do this after creating the global so that if an AMD module wants
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++ ) {// to call noConflict to hide this version of jQuery, it will work.
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++ ) {if ( typeof define === "function" && define.amd ) {
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++ ) { define( "jquery", [], function() {
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++ ) { return jQuery;
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++ ) { });
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++ ) {}
9076  
9077  
9078  
9079  
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++ ) {var
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++ ) { // Map over jQuery in case of overwrite
9082 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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,
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++ ) { // Map over the $ in case of overwrite
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++ ) { _$ = window.$;
9086  
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++ ) {jQuery.noConflict = function( deep ) {
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++ ) { if ( window.$ === jQuery ) {
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++ ) { window.$ = _$;
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++ ) { }
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++ ) { if ( deep && window.jQuery === jQuery ) {
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++ ) { window.jQuery = _jQuery;
9094 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\w:]+)/<|&#?\w+;/<(?:script|style|link)/<1.8 extension point< length ; index++ ) {< 1 && length ) {< length ; index++ ) {< length ; index++ ) {< length ; index++ ) {< length; index++ ) {< timers.length; i++ ) { }
9095  
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++ ) { return jQuery;
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++ ) {};
9098  
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++ ) {// Expose jQuery and $ identifiers, even in
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++ ) {// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
9101 <(\w+)\s*\/?><\/\1><[\w\W]+><(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^><([\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)
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++ ) {if ( typeof noGlobal === strundefined ) {
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++ ) { window.jQuery = window.$ = jQuery;
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++ ) {}
9105  
9106  
9107  
9108  
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++ ) {return jQuery;
9110  
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++ ) {}));