17 if ( typeof module ===
"object" && typeof module.exports ===
"object" ) {
25 module.exports =
global.document ?
29 throw new Error(
"jQuery requires a window with a document" );
38 }(typeof window !==
"undefined" ? window :
this,
function( window, noGlobal ) {
47 var document = window.document;
49 var slice = arr.slice;
51 var concat = arr.concat;
55 var indexOf = arr.indexOf;
59 var toString = class2type.toString;
61 var hasOwn = class2type.hasOwnProperty;
71 jQuery =
function( selector, context ) {
75 return new jQuery.fn.init( selector, context );
80 rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
84 rdashAlpha = /-([\da-z])/gi,
87 fcamelCase =
function( all, letter ) {
88 return letter.toUpperCase();
91 jQuery.fn = jQuery.prototype = {
104 toArray:
function() {
105 return slice.call(
this );
110 get:
function( num ) {
114 ( num < 0 ?
this[ num + this.length ] :
this[ num ] ) :
122 pushStack:
function( elems ) {
125 var ret = jQuery.merge( this.constructor(), elems );
128 ret.prevObject =
this;
129 ret.context = this.context;
136 each:
function( callback ) {
137 return jQuery.each(
this, callback );
140 map:
function( callback ) {
141 return this.pushStack( jQuery.map(
this,
function( elem, i ) {
142 return callback.call( elem, i, elem );
147 return this.pushStack( slice.apply(
this, arguments ) );
155 return this.eq( -1 );
159 var len = this.length,
160 j = +i + ( i < 0 ? len : 0 );
161 return this.pushStack( j >= 0 && j < len ? [
this[ j ] ] : [] );
165 return this.prevObject || this.constructor();
175 jQuery.extend = jQuery.fn.extend =
function() {
176 var options, name, src, copy, copyIsArray, clone,
177 target = arguments[ 0 ] || {},
179 length = arguments.length,
183 if ( typeof target ===
"boolean" ) {
187 target = arguments[ i ] || {};
192 if ( typeof target !==
"object" && !jQuery.isFunction( target ) ) {
197 if ( i === length ) {
202 for ( ; i < length; i++ ) {
205 if ( ( options = arguments[ i ] ) != null ) {
208 for ( name in options ) {
209 src = target[ name ];
210 copy = options[ name ];
213 if ( target === copy ) {
218 if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
219 ( copyIsArray = jQuery.isArray( copy ) ) ) ) {
223 clone = src && jQuery.isArray( src ) ? src : [];
226 clone = src && jQuery.isPlainObject( src ) ? src : {};
230 target[ name ] = jQuery.extend( deep, clone, copy );
234 target[ name ] = copy;
247 expando:
"jQuery" + ( version + Math.random() ).replace( /\D/g,
"" ),
252 error:
function( msg ) {
253 throw new Error( msg );
258 isFunction:
function( obj ) {
259 return jQuery.type( obj ) ===
"function";
262 isArray: Array.isArray,
264 isWindow:
function( obj ) {
265 return obj != null && obj === obj.window;
268 isNumeric:
function( obj ) {
274 var realStringObj = obj && obj.toString();
275 return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;
278 isPlainObject:
function( obj ) {
285 if ( jQuery.type( obj ) !==
"object" || obj.nodeType || jQuery.isWindow( obj ) ) {
290 if ( obj.constructor &&
291 !hasOwn.call( obj,
"constructor" ) &&
292 !hasOwn.call( obj.constructor.prototype || {},
"isPrototypeOf" ) ) {
298 for ( key in obj ) {}
300 return key ===
undefined || hasOwn.call( obj, key );
303 isEmptyObject:
function( obj ) {
305 for ( name in obj ) {
311 type:
function( obj ) {
317 return typeof obj ===
"object" || typeof obj ===
"function" ?
318 class2type[ toString.call( obj ) ] ||
"object" :
323 globalEval:
function( code ) {
327 code = jQuery.trim( code );
334 if ( code.indexOf(
"use strict" ) === 1 ) {
335 script = document.createElement(
"script" );
337 document.head.appendChild( script ).parentNode.removeChild( script );
351 camelCase:
function( string ) {
352 return string.replace( rmsPrefix,
"ms-" ).replace( rdashAlpha, fcamelCase );
355 nodeName:
function( elem, name ) {
356 return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
359 each:
function( obj, callback ) {
362 if ( isArrayLike( obj ) ) {
364 for ( ; i < length; i++ ) {
365 if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
371 if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
381 trim:
function( text ) {
382 return text == null ?
384 ( text +
"" ).replace( rtrim,
"" );
388 makeArray:
function( arr, results ) {
389 var ret = results || [];
392 if ( isArrayLike( Object( arr ) ) ) {
394 typeof arr ===
"string" ?
398 push.call( ret, arr );
405 inArray:
function( elem, arr, i ) {
406 return arr == null ? -1 : indexOf.call( arr, elem, i );
409 merge:
function( first, second ) {
410 var len = +second.length,
414 for ( ; j < len; j++ ) {
415 first[ i++ ] = second[ j ];
423 grep:
function( elems, callback, invert ) {
427 length = elems.length,
428 callbackExpect = !invert;
432 for ( ; i < length; i++ ) {
433 callbackInverse = !callback( elems[ i ], i );
434 if ( callbackInverse !== callbackExpect ) {
435 matches.push( elems[ i ] );
443 map:
function( elems, callback, arg ) {
449 if ( isArrayLike( elems ) ) {
450 length = elems.length;
451 for ( ; i < length; i++ ) {
452 value = callback( elems[ i ], i, arg );
454 if ( value != null ) {
462 value = callback( elems[ i ], i, arg );
464 if ( value != null ) {
471 return concat.apply( [], ret );
479 proxy:
function(
fn, context ) {
480 var tmp, args, proxy;
482 if ( typeof context ===
"string" ) {
490 if ( !jQuery.isFunction(
fn ) ) {
495 args = slice.call( arguments, 2 );
497 return fn.apply( context ||
this, args.concat( slice.call( arguments ) ) );
501 proxy.guid =
fn.guid =
fn.guid || jQuery.guid++;
518 if ( typeof
Symbol ===
"function" ) {
524 jQuery.each(
"Boolean Number String Function Array Date RegExp Object Error Symbol".split(
" " ),
525 function( i, name ) {
526 class2type[
"[object " + name +
"]" ] = name.toLowerCase();
529 function isArrayLike( obj ) {
535 var length = !!obj &&
"length" in obj && obj.length,
536 type = jQuery.type( obj );
538 if ( type ===
"function" || jQuery.isWindow( obj ) ) {
542 return type ===
"array" || length === 0 ||
543 typeof length ===
"number" && length > 0 && ( length - 1 ) in obj;
556 (
function( window ) {
581 expando =
"sizzle" + 1 *
new Date(),
582 preferredDoc = window.document,
585 classCache = createCache(),
586 tokenCache = createCache(),
587 compilerCache = createCache(),
588 sortOrder =
function(
a,
b ) {
596 MAX_NEGATIVE = 1 << 31,
599 hasOwn = ({}).hasOwnProperty,
602 push_native = arr.push,
607 indexOf =
function( list, elem ) {
610 for ( ; i < len; i++ ) {
611 if ( list[i] === elem ) {
618 booleans =
"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
623 whitespace =
"[\\x20\\t\\r\\n\\f]",
626 identifier =
"(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
629 attributes =
"\\[" + whitespace +
"*(" + identifier +
")(?:" + whitespace +
631 "*([*^$|!~]?=)" + whitespace +
633 "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier +
"))|)" + whitespace +
636 pseudos =
":(" + identifier +
")(?:\\((" +
639 "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
641 "((?:\\\\.|[^\\\\()[\\]]|" + attributes +
")*)|" +
647 rwhitespace =
new RegExp( whitespace +
"+",
"g" ),
648 rtrim =
new RegExp(
"^" + whitespace +
"+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace +
"+$",
"g" ),
650 rcomma =
new RegExp(
"^" + whitespace +
"*," + whitespace +
"*" ),
651 rcombinators =
new RegExp(
"^" + whitespace +
"*([>+~]|" + whitespace +
")" + whitespace +
"*" ),
653 rattributeQuotes =
new RegExp(
"=" + whitespace +
"*([^\\]'\"]*?)" + whitespace +
"*\\]",
"g" ),
655 rpseudo =
new RegExp( pseudos ),
656 ridentifier =
new RegExp(
"^" + identifier +
"$" ),
659 "ID":
new RegExp(
"^#(" + identifier +
")" ),
660 "CLASS":
new RegExp(
"^\\.(" + identifier +
")" ),
661 "TAG":
new RegExp(
"^(" + identifier +
"|[*])" ),
662 "ATTR":
new RegExp(
"^" + attributes ),
663 "PSEUDO":
new RegExp(
"^" + pseudos ),
664 "CHILD":
new RegExp(
"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
665 "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace +
"*(?:([+-]|)" + whitespace +
666 "*(\\d+)|))" + whitespace +
"*\\)|)",
"i" ),
667 "bool":
new RegExp(
"^(?:" + booleans +
")$",
"i" ),
670 "needsContext":
new RegExp(
"^" + whitespace +
"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
671 whitespace +
"*((?:-\\d)?\\d*)" + whitespace +
"*\\)|)(?=[^-]|$)",
"i" )
674 rinputs = /^(?:input|select|textarea|
button)$/i,
677 rnative = /^[^{]+\{
\s*\[native \w/,
680 rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
685 // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters 686 runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), 687 funescape = function( _, escaped, escapedWhitespace ) { 688 var high = "0x" + escaped - 0x10000; 689 // NaN means non-codepoint 690 // Support: Firefox<24 691 // Workaround erroneous numeric interpretation of +"0x" 692 return high !== high || escapedWhitespace ? 696 String.fromCharCode( high + 0x10000 ) : 697 // Supplemental Plane codepoint (surrogate pair) 698 String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); 703 // Removing the function wrapper causes a "Permission Denied" 705 unloadHandler = function() { 709 // Optimize for push.apply( _, NodeList ) 712 (arr = slice.call( preferredDoc.childNodes )), 713 preferredDoc.childNodes 715 // Support: Android<4.0 716 // Detect silently failing push.apply 717 arr[ preferredDoc.childNodes.length ].nodeType; 719 push = { apply: arr.length ? 721 // Leverage slice if possible 722 function( target, els ) { 723 push_native.apply( target, slice.call(els) ); 727 // Otherwise append directly 728 function( target, els ) { 729 var j = target.length, 731 // Can't trust NodeList.length
732 while ( (target[j++] = els[i++]) ) {}
733 target.length = j - 1;
738 function Sizzle( selector, context, results, seed ) {
739 var m, i, elem, nid, nidselect, match, groups, newSelector,
740 newContext = context && context.ownerDocument,
743 nodeType = context ? context.nodeType : 9;
745 results = results || [];
748 if ( typeof selector !==
"string" || !selector ||
749 nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
757 if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
758 setDocument( context );
760 context = context || document;
762 if ( documentIsHTML ) {
766 if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
769 if ( (m = match[1]) ) {
772 if ( nodeType === 9 ) {
773 if ( (elem = context.getElementById( m )) ) {
778 if ( elem.id === m ) {
779 results.push( elem );
792 if ( newContext && (elem = newContext.getElementById( m )) &&
793 contains( context, elem ) &&
796 results.push( elem );
802 }
else if ( match[2] ) {
803 push.apply( results, context.getElementsByTagName( selector ) );
807 }
else if ( (m = match[3]) && support.getElementsByClassName &&
808 context.getElementsByClassName ) {
810 push.apply( results, context.getElementsByClassName( m ) );
817 !compilerCache[ selector +
" " ] &&
818 (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
820 if ( nodeType !== 1 ) {
821 newContext = context;
822 newSelector = selector;
828 }
else if ( context.nodeName.toLowerCase() !==
"object" ) {
831 if ( (nid = context.getAttribute(
"id" )) ) {
832 nid = nid.replace( rescape,
"\\$&" );
834 context.setAttribute(
"id", (nid = expando) );
838 groups = tokenize( selector );
840 nidselect = ridentifier.test( nid ) ?
"#" + nid :
"[id='" + nid +
"']";
842 groups[i] = nidselect +
" " + toSelector( groups[i] );
844 newSelector = groups.join(
"," );
847 newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
854 newContext.querySelectorAll( newSelector )
857 }
catch ( qsaError ) {
859 if ( nid === expando ) {
860 context.removeAttribute(
"id" );
869 return select( selector.replace( rtrim,
"$1" ), context, results, seed );
878 function createCache() {
881 function cache( key, value ) {
883 if ( keys.push( key +
" " ) > Expr.cacheLength ) {
885 delete cache[ keys.shift() ];
887 return (cache[ key +
" " ] = value);
896 function markFunction(
fn ) {
897 fn[ expando ] =
true;
905 function assert(
fn ) {
906 var div = document.createElement(
"div");
914 if ( div.parentNode ) {
915 div.parentNode.removeChild( div );
927 function addHandle( attrs, handler ) {
928 var arr = attrs.split(
"|"),
932 Expr.attrHandle[ arr[i] ] = handler;
942 function siblingCheck(
a,
b ) {
944 diff = cur && a.nodeType === 1 &&
b.nodeType === 1 &&
945 ( ~
b.sourceIndex || MAX_NEGATIVE ) -
946 ( ~a.sourceIndex || MAX_NEGATIVE );
955 while ( (cur = cur.nextSibling) ) {
969 function createInputPseudo( type ) {
970 return function( elem ) {
971 var name = elem.nodeName.toLowerCase();
972 return name ===
"input" && elem.type === type;
980 function createButtonPseudo( type ) {
981 return function( elem ) {
982 var name = elem.nodeName.toLowerCase();
983 return (name ===
"input" || name ===
"button") && elem.type === type;
991 function createPositionalPseudo(
fn ) {
992 return markFunction(
function( argument ) {
993 argument = +argument;
994 return markFunction(
function( seed, matches ) {
996 matchIndexes =
fn( [], seed.length, argument ),
997 i = matchIndexes.length;
1001 if ( seed[ (j = matchIndexes[i]) ] ) {
1002 seed[j] = !(matches[j] = seed[j]);
1014 function testContext( context ) {
1015 return context && typeof context.getElementsByTagName !==
"undefined" && context;
1019 support = Sizzle.support = {};
1026 isXML = Sizzle.isXML =
function( elem ) {
1029 var documentElement = elem && (elem.ownerDocument || elem).documentElement;
1030 return documentElement ? documentElement.nodeName !==
"HTML" :
false;
1038 setDocument = Sizzle.setDocument =
function( node ) {
1039 var hasCompare, parent,
1040 doc = node ? node.ownerDocument || node : preferredDoc;
1043 if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
1049 docElem = document.documentElement;
1050 documentIsHTML = !isXML( document );
1054 if ( (parent = document.defaultView) && parent.top !== parent ) {
1056 if ( parent.addEventListener ) {
1057 parent.addEventListener(
"unload", unloadHandler,
false );
1060 }
else if ( parent.attachEvent ) {
1061 parent.attachEvent(
"onunload", unloadHandler );
1071 support.attributes = assert(
function( div ) {
1072 div.className =
"i";
1073 return !div.getAttribute(
"className");
1080 support.getElementsByTagName = assert(
function( div ) {
1081 div.appendChild( document.createComment(
"") );
1082 return !div.getElementsByTagName(
"*").length;
1086 support.getElementsByClassName = rnative.test( document.getElementsByClassName );
1092 support.getById = assert(
function( div ) {
1093 docElem.appendChild( div ).id = expando;
1094 return !document.getElementsByName || !document.getElementsByName( expando ).length;
1098 if ( support.getById ) {
1099 Expr.find[
"ID"] =
function( id, context ) {
1100 if ( typeof context.getElementById !==
"undefined" && documentIsHTML ) {
1101 var m = context.getElementById(
id );
1102 return m ? [ m ] : [];
1105 Expr.filter[
"ID"] =
function( id ) {
1106 var attrId =
id.replace( runescape, funescape );
1107 return function( elem ) {
1108 return elem.getAttribute(
"id") === attrId;
1114 delete Expr.find[
"ID"];
1116 Expr.filter[
"ID"] =
function( id ) {
1117 var attrId =
id.replace( runescape, funescape );
1118 return function( elem ) {
1119 var node = typeof elem.getAttributeNode !==
"undefined" &&
1120 elem.getAttributeNode(
"id");
1121 return node && node.value === attrId;
1127 Expr.find[
"TAG"] = support.getElementsByTagName ?
1128 function( tag, context ) {
1129 if ( typeof context.getElementsByTagName !==
"undefined" ) {
1130 return context.getElementsByTagName( tag );
1133 }
else if ( support.qsa ) {
1134 return context.querySelectorAll( tag );
1138 function( tag, context ) {
1143 results = context.getElementsByTagName( tag );
1146 if ( tag ===
"*" ) {
1147 while ( (elem = results[i++]) ) {
1148 if ( elem.nodeType === 1 ) {
1159 Expr.find[
"CLASS"] = support.getElementsByClassName &&
function( className, context ) {
1160 if ( typeof context.getElementsByClassName !==
"undefined" && documentIsHTML ) {
1161 return context.getElementsByClassName( className );
1180 if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
1183 assert(
function( div ) {
1189 docElem.appendChild( div ).innerHTML =
"<a id='" + expando +
"'></a>" +
1190 "<select id='" + expando +
"-\r\\' msallowcapture=''>" +
1191 "<option selected=''></option></select>";
1197 if ( div.querySelectorAll(
"[msallowcapture^='']").length ) {
1198 rbuggyQSA.push(
"[*^$]=" + whitespace +
"*(?:''|\"\")" );
1203 if ( !div.querySelectorAll(
"[selected]").length ) {
1204 rbuggyQSA.push(
"\\[" + whitespace +
"*(?:value|" + booleans +
")" );
1208 if ( !div.querySelectorAll(
"[id~=" + expando +
"-]" ).length ) {
1209 rbuggyQSA.push(
"~=");
1215 if ( !div.querySelectorAll(
":checked").length ) {
1216 rbuggyQSA.push(
":checked");
1222 if ( !div.querySelectorAll(
"a#" + expando +
"+*" ).length ) {
1223 rbuggyQSA.push(
".#.+[+~]");
1227 assert(
function( div ) {
1230 var input = document.createElement(
"input");
1231 input.setAttribute(
"type",
"hidden" );
1232 div.appendChild( input ).setAttribute(
"name",
"D" );
1236 if ( div.querySelectorAll(
"[name=d]").length ) {
1237 rbuggyQSA.push(
"name" + whitespace +
"*[*^$|!~]?=" );
1242 if ( !div.querySelectorAll(
":enabled").length ) {
1243 rbuggyQSA.push(
":enabled",
":disabled" );
1247 div.querySelectorAll(
"*,:x");
1248 rbuggyQSA.push(
",.*:");
1252 if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
1253 docElem.webkitMatchesSelector ||
1254 docElem.mozMatchesSelector ||
1255 docElem.oMatchesSelector ||
1256 docElem.msMatchesSelector) )) ) {
1258 assert(
function( div ) {
1261 support.disconnectedMatch = matches.call( div,
"div" );
1265 matches.call( div,
"[s!='']:x" );
1266 rbuggyMatches.push(
"!=", pseudos );
1270 rbuggyQSA = rbuggyQSA.length &&
new RegExp( rbuggyQSA.join(
"|") );
1271 rbuggyMatches = rbuggyMatches.length &&
new RegExp( rbuggyMatches.join(
"|") );
1275 hasCompare = rnative.test( docElem.compareDocumentPosition );
1280 contains = hasCompare || rnative.test( docElem.contains ) ?
1282 var adown =
a.nodeType === 9 ?
a.documentElement :
a,
1283 bup =
b &&
b.parentNode;
1284 return a === bup || !!( bup && bup.nodeType === 1 && (
1286 adown.contains( bup ) :
1287 a.compareDocumentPosition &&
a.compareDocumentPosition( bup ) & 16
1292 while ( (
b =
b.parentNode) ) {
1305 sortOrder = hasCompare ?
1310 hasDuplicate =
true;
1315 var compare = !a.compareDocumentPosition - !
b.compareDocumentPosition;
1321 compare = ( a.ownerDocument ||
a ) === (
b.ownerDocument ||
b ) ?
1322 a.compareDocumentPosition(
b ) :
1329 (!support.sortDetached &&
b.compareDocumentPosition( a ) === compare) ) {
1332 if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
1335 if (
b === document ||
b.ownerDocument === preferredDoc && contains(preferredDoc,
b) ) {
1341 ( indexOf( sortInput, a ) - indexOf( sortInput,
b ) ) :
1345 return compare & 4 ? -1 : 1;
1350 hasDuplicate =
true;
1362 if ( !aup || !bup ) {
1363 return a === document ? -1 :
1364 b === document ? 1 :
1368 ( indexOf( sortInput, a ) - indexOf( sortInput,
b ) ) :
1372 }
else if ( aup === bup ) {
1373 return siblingCheck( a,
b );
1378 while ( (cur = cur.parentNode) ) {
1382 while ( (cur = cur.parentNode) ) {
1387 while ( ap[i] === bp[i] ) {
1393 siblingCheck( ap[i], bp[i] ) :
1396 ap[i] === preferredDoc ? -1 :
1397 bp[i] === preferredDoc ? 1 :
1404 Sizzle.matches =
function( expr, elements ) {
1405 return Sizzle( expr, null, null, elements );
1408 Sizzle.matchesSelector =
function( elem, expr ) {
1410 if ( ( elem.ownerDocument || elem ) !== document ) {
1411 setDocument( elem );
1415 expr = expr.replace( rattributeQuotes,
"='$1']" );
1417 if ( support.matchesSelector && documentIsHTML &&
1418 !compilerCache[ expr +
" " ] &&
1419 ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
1420 ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
1423 var ret = matches.call( elem, expr );
1426 if ( ret || support.disconnectedMatch ||
1429 elem.document && elem.document.nodeType !== 11 ) {
1435 return Sizzle( expr, document, null, [ elem ] ).length > 0;
1438 Sizzle.contains =
function( context, elem ) {
1440 if ( ( context.ownerDocument || context ) !== document ) {
1441 setDocument( context );
1443 return contains( context, elem );
1446 Sizzle.attr =
function( elem, name ) {
1448 if ( ( elem.ownerDocument || elem ) !== document ) {
1449 setDocument( elem );
1452 var
fn = Expr.attrHandle[ name.toLowerCase() ],
1454 val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
1455 fn( elem, name, !documentIsHTML ) :
1460 support.attributes || !documentIsHTML ?
1461 elem.getAttribute( name ) :
1462 (val = elem.getAttributeNode(name)) && val.specified ?
1467 Sizzle.error =
function( msg ) {
1468 throw new Error(
"Syntax error, unrecognized expression: " + msg );
1475 Sizzle.uniqueSort =
function( results ) {
1482 hasDuplicate = !support.detectDuplicates;
1483 sortInput = !support.sortStable && results.slice( 0 );
1484 results.sort( sortOrder );
1486 if ( hasDuplicate ) {
1487 while ( (elem = results[i++]) ) {
1488 if ( elem === results[ i ] ) {
1489 j = duplicates.push( i );
1493 results.splice( duplicates[ j ], 1 );
1508 getText = Sizzle.getText =
function( elem ) {
1512 nodeType = elem.nodeType;
1516 while ( (node = elem[i++]) ) {
1518 ret += getText( node );
1520 }
else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
1523 if ( typeof elem.textContent ===
"string" ) {
1524 return elem.textContent;
1527 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1528 ret += getText( elem );
1531 }
else if ( nodeType === 3 || nodeType === 4 ) {
1532 return elem.nodeValue;
1539 Expr = Sizzle.selectors = {
1544 createPseudo: markFunction,
1553 ">": { dir:
"parentNode", first:
true },
1554 " ": { dir:
"parentNode" },
1555 "+": { dir:
"previousSibling", first:
true },
1556 "~": { dir:
"previousSibling" }
1560 "ATTR":
function( match ) {
1561 match[1] = match[1].replace( runescape, funescape );
1564 match[3] = ( match[3] || match[4] || match[5] ||
"" ).replace( runescape, funescape );
1566 if ( match[2] ===
"~=" ) {
1567 match[3] =
" " + match[3] +
" ";
1570 return match.slice( 0, 4 );
1573 "CHILD":
function( match ) {
1584 match[1] = match[1].toLowerCase();
1586 if ( match[1].slice( 0, 3 ) ===
"nth" ) {
1589 Sizzle.error( match[0] );
1594 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] ===
"even" || match[3] ===
"odd" ) );
1595 match[5] = +( ( match[7] + match[8] ) || match[3] ===
"odd" );
1598 }
else if ( match[3] ) {
1599 Sizzle.error( match[0] );
1605 "PSEUDO":
function( match ) {
1607 unquoted = !match[6] && match[2];
1609 if ( matchExpr[
"CHILD"].test( match[0] ) ) {
1615 match[2] = match[4] || match[5] ||
"";
1618 }
else if ( unquoted && rpseudo.test( unquoted ) &&
1620 (excess = tokenize( unquoted,
true )) &&
1622 (excess = unquoted.indexOf(
")", unquoted.length - excess ) - unquoted.length) ) {
1625 match[0] = match[0].slice( 0, excess );
1626 match[2] = unquoted.slice( 0, excess );
1630 return match.slice( 0, 3 );
1636 "TAG":
function( nodeNameSelector ) {
1637 var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
1638 return nodeNameSelector ===
"*" ?
1639 function() {
return true; } :
1641 return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
1645 "CLASS":
function( className ) {
1646 var pattern = classCache[ className +
" " ];
1649 (pattern =
new RegExp(
"(^|" + whitespace +
")" + className +
"(" + whitespace +
"|$)" )) &&
1650 classCache( className,
function( elem ) {
1651 return pattern.test( typeof elem.className ===
"string" && elem.className || typeof elem.getAttribute !==
"undefined" && elem.getAttribute(
"class") ||
"" );
1655 "ATTR":
function( name,
operator, check ) {
1656 return function( elem ) {
1657 var result = Sizzle.attr( elem, name );
1659 if ( result == null ) {
1660 return operator ===
"!=";
1668 return operator ===
"=" ? result === check :
1669 operator ===
"!=" ? result !== check :
1670 operator ===
"^=" ? check && result.indexOf( check ) === 0 :
1671 operator ===
"*=" ? check && result.indexOf( check ) > -1 :
1672 operator ===
"$=" ? check && result.slice( -check.length ) === check :
1673 operator === "~=" ? (
" " + result.replace( rwhitespace,
" " ) +
" " ).indexOf( check ) > -1 :
1674 operator ===
"|=" ? result === check || result.slice( 0, check.length + 1 ) === check +
"-" :
1679 "CHILD":
function( type, what, argument, first, last ) {
1680 var simple = type.slice( 0, 3 ) !==
"nth",
1681 forward = type.slice( -4 ) !==
"last",
1682 ofType = what ===
"of-type";
1684 return first === 1 && last === 0 ?
1688 return !!elem.parentNode;
1691 function( elem, context, xml ) {
1692 var cache, uniqueCache, outerCache, node, nodeIndex, start,
1693 dir = simple !== forward ?
"nextSibling" :
"previousSibling",
1694 parent = elem.parentNode,
1695 name = ofType && elem.nodeName.toLowerCase(),
1696 useCache = !xml && !ofType,
1705 while ( (node = node[ dir ]) ) {
1707 node.nodeName.toLowerCase() === name :
1708 node.nodeType === 1 ) {
1714 start = dir = type ===
"only" && !start &&
"nextSibling";
1719 start = [ forward ? parent.firstChild : parent.lastChild ];
1722 if ( forward && useCache ) {
1728 outerCache = node[ expando ] || (node[ expando ] = {});
1732 uniqueCache = outerCache[ node.uniqueID ] ||
1733 (outerCache[ node.uniqueID ] = {});
1735 cache = uniqueCache[ type ] || [];
1736 nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1737 diff = nodeIndex && cache[ 2 ];
1738 node = nodeIndex && parent.childNodes[ nodeIndex ];
1740 while ( (node = ++nodeIndex && node && node[ dir ] ||
1743 (diff = nodeIndex = 0) || start.pop()) ) {
1746 if ( node.nodeType === 1 && ++diff && node === elem ) {
1747 uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
1757 outerCache = node[ expando ] || (node[ expando ] = {});
1761 uniqueCache = outerCache[ node.uniqueID ] ||
1762 (outerCache[ node.uniqueID ] = {});
1764 cache = uniqueCache[ type ] || [];
1765 nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1771 if ( diff ===
false ) {
1773 while ( (node = ++nodeIndex && node && node[ dir ] ||
1774 (diff = nodeIndex = 0) || start.pop()) ) {
1777 node.nodeName.toLowerCase() === name :
1778 node.nodeType === 1 ) &&
1783 outerCache = node[ expando ] || (node[ expando ] = {});
1787 uniqueCache = outerCache[ node.uniqueID ] ||
1788 (outerCache[ node.uniqueID ] = {});
1790 uniqueCache[ type ] = [ dirruns, diff ];
1793 if ( node === elem ) {
1803 return diff === first || ( diff % first === 0 && diff / first >= 0 );
1808 "PSEUDO":
function( pseudo, argument ) {
1814 fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
1815 Sizzle.error(
"unsupported pseudo: " + pseudo );
1820 if ( fn[ expando ] ) {
1821 return fn( argument );
1825 if ( fn.length > 1 ) {
1826 args = [ pseudo, pseudo,
"", argument ];
1827 return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
1828 markFunction(
function( seed, matches ) {
1830 matched =
fn( seed, argument ),
1833 idx = indexOf( seed, matched[i] );
1834 seed[ idx ] = !( matches[ idx ] = matched[i] );
1838 return fn( elem, 0, args );
1848 "not": markFunction(
function( selector ) {
1854 matcher = compile( selector.replace( rtrim,
"$1" ) );
1856 return matcher[ expando ] ?
1857 markFunction(
function( seed, matches, context, xml ) {
1859 unmatched = matcher( seed, null, xml, [] ),
1864 if ( (elem = unmatched[i]) ) {
1865 seed[i] = !(matches[i] = elem);
1869 function( elem, context, xml ) {
1871 matcher( input, null, xml, results );
1874 return !results.pop();
1878 "has": markFunction(
function( selector ) {
1879 return function( elem ) {
1880 return Sizzle( selector, elem ).length > 0;
1884 "contains": markFunction(
function( text ) {
1885 text = text.replace( runescape, funescape );
1886 return function( elem ) {
1887 return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
1898 "lang": markFunction(
function( lang ) {
1900 if ( !ridentifier.test(lang ||
"") ) {
1901 Sizzle.error(
"unsupported lang: " + lang );
1903 lang = lang.replace( runescape, funescape ).toLowerCase();
1904 return function( elem ) {
1907 if ( (elemLang = documentIsHTML ?
1909 elem.getAttribute(
"xml:lang") || elem.getAttribute(
"lang")) ) {
1911 elemLang = elemLang.toLowerCase();
1912 return elemLang === lang || elemLang.indexOf( lang +
"-" ) === 0;
1914 }
while ( (elem = elem.parentNode) && elem.nodeType === 1 );
1920 "target":
function( elem ) {
1921 var hash = window.location && window.location.hash;
1922 return hash && hash.slice( 1 ) === elem.id;
1925 "root":
function( elem ) {
1926 return elem === docElem;
1929 "focus":
function( elem ) {
1930 return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
1934 "enabled":
function( elem ) {
1935 return elem.disabled ===
false;
1938 "disabled":
function( elem ) {
1939 return elem.disabled ===
true;
1942 "checked":
function( elem ) {
1945 var nodeName = elem.nodeName.toLowerCase();
1946 return (nodeName ===
"input" && !!elem.checked) || (nodeName ===
"option" && !!elem.selected);
1949 "selected":
function( elem ) {
1952 if ( elem.parentNode ) {
1953 elem.parentNode.selectedIndex;
1956 return elem.selected ===
true;
1960 "empty":
function( elem ) {
1965 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1966 if ( elem.nodeType < 6 ) {
1973 "parent":
function( elem ) {
1974 return !Expr.pseudos[
"empty"]( elem );
1978 "header":
function( elem ) {
1979 return rheader.test( elem.nodeName );
1982 "input":
function( elem ) {
1983 return rinputs.test( elem.nodeName );
1986 "button":
function( elem ) {
1987 var name = elem.nodeName.toLowerCase();
1988 return name ===
"input" && elem.type ===
"button" || name ===
"button";
1991 "text":
function( elem ) {
1993 return elem.nodeName.toLowerCase() ===
"input" &&
1994 elem.type ===
"text" &&
1998 ( (attr = elem.getAttribute(
"type")) == null || attr.toLowerCase() ===
"text" );
2002 "first": createPositionalPseudo(
function() {
2006 "last": createPositionalPseudo(
function( matchIndexes, length ) {
2007 return [ length - 1 ];
2010 "eq": createPositionalPseudo(
function( matchIndexes, length, argument ) {
2011 return [ argument < 0 ? argument + length : argument ];
2014 "even": createPositionalPseudo(
function( matchIndexes, length ) {
2016 for ( ; i < length; i += 2 ) {
2017 matchIndexes.push( i );
2019 return matchIndexes;
2022 "odd": createPositionalPseudo(
function( matchIndexes, length ) {
2024 for ( ; i < length; i += 2 ) {
2025 matchIndexes.push( i );
2027 return matchIndexes;
2030 "lt": createPositionalPseudo(
function( matchIndexes, length, argument ) {
2031 var i = argument < 0 ? argument + length : argument;
2032 for ( ; --i >= 0; ) {
2033 matchIndexes.push( i );
2035 return matchIndexes;
2038 "gt": createPositionalPseudo(
function( matchIndexes, length, argument ) {
2039 var i = argument < 0 ? argument + length : argument;
2040 for ( ; ++i < length; ) {
2041 matchIndexes.push( i );
2043 return matchIndexes;
2048 Expr.pseudos[
"nth"] = Expr.pseudos[
"eq"];
2051 for ( i in { radio:
true, checkbox:
true, file:
true, password:
true, image:
true } ) {
2052 Expr.pseudos[ i ] = createInputPseudo( i );
2054 for ( i in { submit:
true, reset:
true } ) {
2055 Expr.pseudos[ i ] = createButtonPseudo( i );
2059 function setFilters() {}
2060 setFilters.prototype = Expr.filters = Expr.pseudos;
2061 Expr.setFilters =
new setFilters();
2063 tokenize = Sizzle.tokenize =
function( selector, parseOnly ) {
2064 var matched, match, tokens, type,
2065 soFar, groups, preFilters,
2066 cached = tokenCache[ selector +
" " ];
2069 return parseOnly ? 0 : cached.slice( 0 );
2074 preFilters = Expr.preFilter;
2079 if ( !matched || (match = rcomma.exec( soFar )) ) {
2082 soFar = soFar.slice( match[0].length ) || soFar;
2084 groups.push( (tokens = []) );
2090 if ( (match = rcombinators.exec( soFar )) ) {
2091 matched = match.shift();
2095 type: match[0].replace( rtrim,
" " )
2097 soFar = soFar.slice( matched.length );
2101 for ( type in Expr.filter ) {
2102 if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
2103 (match = preFilters[ type ]( match ))) ) {
2104 matched = match.shift();
2110 soFar = soFar.slice( matched.length );
2125 Sizzle.error( selector ) :
2127 tokenCache( selector, groups ).slice( 0 );
2130 function toSelector( tokens ) {
2132 len = tokens.length,
2134 for ( ; i < len; i++ ) {
2135 selector += tokens[i].value;
2140 function addCombinator( matcher, combinator, base ) {
2141 var dir = combinator.dir,
2142 checkNonElements = base && dir ===
"parentNode",
2145 return combinator.first ?
2147 function( elem, context, xml ) {
2148 while ( (elem = elem[ dir ]) ) {
2149 if ( elem.nodeType === 1 || checkNonElements ) {
2150 return matcher( elem, context, xml );
2156 function( elem, context, xml ) {
2157 var oldCache, uniqueCache, outerCache,
2158 newCache = [ dirruns, doneName ];
2162 while ( (elem = elem[ dir ]) ) {
2163 if ( elem.nodeType === 1 || checkNonElements ) {
2164 if ( matcher( elem, context, xml ) ) {
2170 while ( (elem = elem[ dir ]) ) {
2171 if ( elem.nodeType === 1 || checkNonElements ) {
2172 outerCache = elem[ expando ] || (elem[ expando ] = {});
2176 uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
2178 if ( (oldCache = uniqueCache[ dir ]) &&
2179 oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
2182 return (newCache[ 2 ] = oldCache[ 2 ]);
2185 uniqueCache[ dir ] = newCache;
2188 if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
2198 function elementMatcher( matchers ) {
2199 return matchers.length > 1 ?
2200 function( elem, context, xml ) {
2201 var i = matchers.length;
2203 if ( !matchers[i]( elem, context, xml ) ) {
2212 function multipleContexts( selector, contexts, results ) {
2214 len = contexts.length;
2215 for ( ; i < len; i++ ) {
2216 Sizzle( selector, contexts[i], results );
2221 function condense( unmatched, map, filter, context, xml ) {
2225 len = unmatched.length,
2226 mapped = map != null;
2228 for ( ; i < len; i++ ) {
2229 if ( (elem = unmatched[i]) ) {
2230 if ( !filter || filter( elem, context, xml ) ) {
2231 newUnmatched.push( elem );
2239 return newUnmatched;
2242 function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
2243 if ( postFilter && !postFilter[ expando ] ) {
2244 postFilter = setMatcher( postFilter );
2246 if ( postFinder && !postFinder[ expando ] ) {
2247 postFinder = setMatcher( postFinder, postSelector );
2249 return markFunction(
function( seed, results, context, xml ) {
2253 preexisting = results.length,
2256 elems = seed || multipleContexts( selector ||
"*", context.nodeType ? [ context ] : context, [] ),
2259 matcherIn = preFilter && ( seed || !selector ) ?
2260 condense( elems, preMap, preFilter, context, xml ) :
2263 matcherOut = matcher ?
2265 postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
2276 matcher( matcherIn, matcherOut, context, xml );
2281 temp = condense( matcherOut, postMap );
2282 postFilter( temp, [], context, xml );
2287 if ( (elem = temp[i]) ) {
2288 matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
2294 if ( postFinder || preFilter ) {
2298 i = matcherOut.length;
2300 if ( (elem = matcherOut[i]) ) {
2302 temp.push( (matcherIn[i] = elem) );
2305 postFinder( null, (matcherOut = []), temp, xml );
2309 i = matcherOut.length;
2311 if ( (elem = matcherOut[i]) &&
2312 (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
2314 seed[temp] = !(results[temp] = elem);
2321 matcherOut = condense(
2322 matcherOut === results ?
2323 matcherOut.splice( preexisting, matcherOut.length ) :
2327 postFinder( null, results, matcherOut, xml );
2329 push.apply( results, matcherOut );
2335 function matcherFromTokens( tokens ) {
2336 var checkContext, matcher, j,
2337 len = tokens.length,
2338 leadingRelative = Expr.relative[ tokens[0].type ],
2339 implicitRelative = leadingRelative || Expr.relative[
" "],
2340 i = leadingRelative ? 1 : 0,
2343 matchContext = addCombinator(
function( elem ) {
2344 return elem === checkContext;
2345 }, implicitRelative, true ),
2346 matchAnyContext = addCombinator(
function( elem ) {
2347 return indexOf( checkContext, elem ) > -1;
2348 }, implicitRelative, true ),
2349 matchers = [
function( elem, context, xml ) {
2350 var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
2351 (checkContext = context).nodeType ?
2352 matchContext( elem, context, xml ) :
2353 matchAnyContext( elem, context, xml ) );
2355 checkContext = null;
2359 for ( ; i < len; i++ ) {
2360 if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
2361 matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
2363 matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
2366 if ( matcher[ expando ] ) {
2369 for ( ; j < len; j++ ) {
2370 if ( Expr.relative[ tokens[j].type ] ) {
2375 i > 1 && elementMatcher( matchers ),
2376 i > 1 && toSelector(
2378 tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type ===
" " ?
"*" :
"" })
2379 ).replace( rtrim,
"$1" ),
2381 i < j && matcherFromTokens( tokens.slice( i, j ) ),
2382 j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
2383 j < len && toSelector( tokens )
2386 matchers.push( matcher );
2390 return elementMatcher( matchers );
2393 function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
2394 var bySet = setMatchers.length > 0,
2395 byElement = elementMatchers.length > 0,
2396 superMatcher =
function( seed, context, xml, results, outermost ) {
2397 var elem, j, matcher,
2400 unmatched = seed && [],
2402 contextBackup = outermostContext,
2404 elems = seed || byElement && Expr.find[
"TAG"](
"*", outermost ),
2406 dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
2410 outermostContext = context === document || context || outermost;
2416 for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
2417 if ( byElement && elem ) {
2419 if ( !context && elem.ownerDocument !== document ) {
2420 setDocument( elem );
2421 xml = !documentIsHTML;
2423 while ( (matcher = elementMatchers[j++]) ) {
2424 if ( matcher( elem, context || document, xml) ) {
2425 results.push( elem );
2430 dirruns = dirrunsUnique;
2437 if ( (elem = !matcher && elem) ) {
2443 unmatched.push( elem );
2459 if ( bySet && i !== matchedCount ) {
2461 while ( (matcher = setMatchers[j++]) ) {
2462 matcher( unmatched, setMatched, context, xml );
2467 if ( matchedCount > 0 ) {
2469 if ( !(unmatched[i] || setMatched[i]) ) {
2470 setMatched[i] = pop.call( results );
2476 setMatched = condense( setMatched );
2480 push.apply( results, setMatched );
2483 if ( outermost && !seed && setMatched.length > 0 &&
2484 ( matchedCount + setMatchers.length ) > 1 ) {
2486 Sizzle.uniqueSort( results );
2492 dirruns = dirrunsUnique;
2493 outermostContext = contextBackup;
2500 markFunction( superMatcher ) :
2504 compile = Sizzle.compile =
function( selector, match ) {
2507 elementMatchers = [],
2508 cached = compilerCache[ selector +
" " ];
2513 match = tokenize( selector );
2517 cached = matcherFromTokens( match[i] );
2518 if ( cached[ expando ] ) {
2519 setMatchers.push( cached );
2521 elementMatchers.push( cached );
2526 cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
2529 cached.selector = selector;
2543 select = Sizzle.select =
function( selector, context, results, seed ) {
2544 var i, tokens, token, type, find,
2545 compiled = typeof selector ===
"function" && selector,
2546 match = !seed && tokenize( (selector = compiled.selector || selector) );
2548 results = results || [];
2552 if ( match.length === 1 ) {
2555 tokens = match[0] = match[0].slice( 0 );
2556 if ( tokens.length > 2 && (token = tokens[0]).type ===
"ID" &&
2557 support.getById && context.nodeType === 9 && documentIsHTML &&
2558 Expr.relative[ tokens[1].type ] ) {
2560 context = ( Expr.find[
"ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
2565 }
else if ( compiled ) {
2566 context = context.parentNode;
2569 selector = selector.slice( tokens.shift().value.length );
2573 i = matchExpr[
"needsContext"].test( selector ) ? 0 : tokens.length;
2578 if ( Expr.relative[ (type = token.type) ] ) {
2581 if ( (find = Expr.find[ type ]) ) {
2584 token.matches[0].replace( runescape, funescape ),
2585 rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
2589 tokens.splice( i, 1 );
2590 selector = seed.length && toSelector( tokens );
2592 push.apply( results, seed );
2604 ( compiled || compile( selector, match ) )(
2609 !context || rsibling.test( selector ) && testContext( context.parentNode ) || context
2617 support.sortStable = expando.split(
"").sort( sortOrder ).join(
"") === expando;
2621 support.detectDuplicates = !!hasDuplicate;
2628 support.sortDetached = assert(
function( div1 ) {
2630 return div1.compareDocumentPosition( document.createElement(
"div") ) & 1;
2636 if ( !assert(
function( div ) {
2637 div.innerHTML =
"<a href='#'></a>";
2638 return div.firstChild.getAttribute(
"href") ===
"#" ;
2640 addHandle(
"type|href|height|width",
function( elem, name, isXML ) {
2642 return elem.getAttribute( name, name.toLowerCase() ===
"type" ? 1 : 2 );
2649 if ( !support.attributes || !assert(
function( div ) {
2650 div.innerHTML =
"<input/>";
2651 div.firstChild.setAttribute(
"value",
"" );
2652 return div.firstChild.getAttribute(
"value" ) ===
"";
2654 addHandle(
"value",
function( elem, name, isXML ) {
2655 if ( !isXML && elem.nodeName.toLowerCase() ===
"input" ) {
2656 return elem.defaultValue;
2663 if ( !assert(
function( div ) {
2664 return div.getAttribute(
"disabled") == null;
2666 addHandle( booleans,
function( elem, name, isXML ) {
2669 return elem[ name ] ===
true ? name.toLowerCase() :
2670 (val = elem.getAttributeNode( name )) && val.specified ?
2683 jQuery.find = Sizzle;
2684 jQuery.expr = Sizzle.selectors;
2685 jQuery.expr[
":" ] = jQuery.expr.pseudos;
2686 jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
2687 jQuery.text = Sizzle.getText;
2688 jQuery.isXMLDoc = Sizzle.isXML;
2689 jQuery.contains = Sizzle.contains;
2693 var dir =
function( elem, dir, until ) {
2697 while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
2698 if ( elem.nodeType === 1 ) {
2699 if ( truncate && jQuery( elem ).is( until ) ) {
2702 matched.push( elem );
2709 var siblings =
function( n, elem ) {
2712 for ( ; n; n = n.nextSibling ) {
2713 if ( n.nodeType === 1 && n !== elem ) {
2722 var rneedsContext = jQuery.expr.match.needsContext;
2724 var rsingleTag = ( /^<([\w-]+)\
s*\/?>(?:<\/\1>|)$/ );
2728 var risSimple = /^.[^:#\[\.,]*$/;
2731 function winnow( elements, qualifier, not ) {
2732 if ( jQuery.isFunction( qualifier ) ) {
2733 return jQuery.grep( elements,
function( elem, i ) {
2735 return !!qualifier.call( elem, i, elem ) !== not;
2740 if ( qualifier.nodeType ) {
2741 return jQuery.grep( elements,
function( elem ) {
2742 return ( elem === qualifier ) !== not;
2747 if ( typeof qualifier ===
"string" ) {
2748 if ( risSimple.test( qualifier ) ) {
2749 return jQuery.filter( qualifier, elements, not );
2752 qualifier = jQuery.filter( qualifier, elements );
2755 return jQuery.grep( elements,
function( elem ) {
2756 return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
2760 jQuery.filter =
function( expr, elems, not ) {
2761 var elem = elems[ 0 ];
2764 expr =
":not(" + expr +
")";
2767 return elems.length === 1 && elem.nodeType === 1 ?
2768 jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
2769 jQuery.find.matches( expr, jQuery.grep( elems,
function( elem ) {
2770 return elem.nodeType === 1;
2775 find:
function( selector ) {
2781 if ( typeof selector !==
"string" ) {
2782 return this.pushStack( jQuery( selector ).filter(
function() {
2783 for ( i = 0; i < len; i++ ) {
2784 if ( jQuery.contains(
self[ i ],
this ) ) {
2791 for ( i = 0; i < len; i++ ) {
2792 jQuery.find( selector,
self[ i ], ret );
2796 ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
2797 ret.selector = this.selector ? this.selector +
" " + selector : selector;
2800 filter:
function( selector ) {
2801 return this.pushStack( winnow(
this, selector || [],
false ) );
2803 not:
function( selector ) {
2804 return this.pushStack( winnow(
this, selector || [],
true ) );
2806 is:
function( selector ) {
2812 typeof selector ===
"string" && rneedsContext.test( selector ) ?
2813 jQuery( selector ) :
2830 rquickExpr = /^(?:
\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
2832 init = jQuery.fn.init =
function( selector, context, root ) {
2842 root = root || rootjQuery;
2845 if ( typeof selector ===
"string" ) {
2846 if ( selector[ 0 ] ===
"<" &&
2847 selector[ selector.length - 1 ] ===
">" &&
2848 selector.length >= 3 ) {
2851 match = [ null, selector, null ];
2854 match = rquickExpr.exec( selector );
2858 if ( match && ( match[ 1 ] || !context ) ) {
2862 context = context instanceof jQuery ? context[ 0 ] : context;
2866 jQuery.merge(
this, jQuery.parseHTML(
2868 context && context.nodeType ? context.ownerDocument || context : document,
2873 if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
2874 for ( match in context ) {
2877 if ( jQuery.isFunction(
this[ match ] ) ) {
2878 this[ match ]( context[ match ] );
2882 this.attr( match, context[ match ] );
2891 elem = document.getElementById( match[ 2 ] );
2895 if ( elem && elem.parentNode ) {
2902 this.context = document;
2903 this.selector = selector;
2908 }
else if ( !context || context.jquery ) {
2909 return ( context || root ).find( selector );
2914 return this.constructor( context ).find( selector );
2918 }
else if ( selector.nodeType ) {
2919 this.context =
this[ 0 ] = selector;
2925 }
else if ( jQuery.isFunction( selector ) ) {
2927 root.ready( selector ) :
2933 if ( selector.selector !==
undefined ) {
2934 this.selector = selector.selector;
2935 this.context = selector.context;
2938 return jQuery.makeArray( selector,
this );
2942 init.prototype = jQuery.fn;
2945 rootjQuery = jQuery( document );
2948 var rparentsprev = /^(?:parents|prev(?:Until|All))/,
2951 guaranteedUnique = {
2959 has:
function( target ) {
2960 var targets = jQuery( target,
this ),
2963 return this.filter(
function() {
2965 for ( ; i < l; i++ ) {
2966 if ( jQuery.contains(
this, targets[ i ] ) ) {
2973 closest:
function( selectors, context ) {
2978 pos = rneedsContext.test( selectors ) || typeof selectors !==
"string" ?
2979 jQuery( selectors, context || this.context ) :
2982 for ( ; i < l; i++ ) {
2983 for ( cur =
this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
2986 if ( cur.nodeType < 11 && ( pos ?
2987 pos.index( cur ) > -1 :
2990 cur.nodeType === 1 &&
2991 jQuery.find.matchesSelector( cur, selectors ) ) ) {
2993 matched.push( cur );
2999 return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
3003 index:
function( elem ) {
3007 return (
this[ 0 ] &&
this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
3011 if ( typeof elem ===
"string" ) {
3012 return indexOf.call( jQuery( elem ),
this[ 0 ] );
3016 return indexOf.call(
this,
3019 elem.jquery ? elem[ 0 ] : elem
3023 add:
function( selector, context ) {
3024 return this.pushStack(
3026 jQuery.merge(
this.get(), jQuery( selector, context ) )
3031 addBack:
function( selector ) {
3032 return this.add( selector == null ?
3033 this.prevObject : this.prevObject.filter( selector )
3038 function sibling( cur, dir ) {
3039 while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
3044 parent:
function( elem ) {
3045 var parent = elem.parentNode;
3046 return parent && parent.nodeType !== 11 ? parent : null;
3048 parents:
function( elem ) {
3049 return dir( elem,
"parentNode" );
3051 parentsUntil:
function( elem, i, until ) {
3052 return dir( elem,
"parentNode", until );
3054 next:
function( elem ) {
3055 return sibling( elem,
"nextSibling" );
3057 prev:
function( elem ) {
3058 return sibling( elem,
"previousSibling" );
3060 nextAll:
function( elem ) {
3061 return dir( elem,
"nextSibling" );
3063 prevAll:
function( elem ) {
3064 return dir( elem,
"previousSibling" );
3066 nextUntil:
function( elem, i, until ) {
3067 return dir( elem,
"nextSibling", until );
3069 prevUntil:
function( elem, i, until ) {
3070 return dir( elem,
"previousSibling", until );
3072 siblings:
function( elem ) {
3073 return siblings( ( elem.parentNode || {} ).firstChild, elem );
3075 children:
function( elem ) {
3076 return siblings( elem.firstChild );
3078 contents:
function( elem ) {
3079 return elem.contentDocument || jQuery.merge( [], elem.childNodes );
3081 },
function( name,
fn ) {
3082 jQuery.fn[ name ] =
function( until, selector ) {
3083 var matched = jQuery.map(
this,
fn, until );
3085 if ( name.slice( -5 ) !==
"Until" ) {
3089 if ( selector && typeof selector ===
"string" ) {
3090 matched = jQuery.filter( selector, matched );
3093 if ( this.length > 1 ) {
3096 if ( !guaranteedUnique[ name ] ) {
3097 jQuery.uniqueSort( matched );
3101 if ( rparentsprev.test( name ) ) {
3106 return this.pushStack( matched );
3109 var rnotwhite = ( /\S+/g );
3114 function createOptions( options ) {
3116 jQuery.each( options.match( rnotwhite ) || [],
function( _, flag ) {
3117 object[ flag ] =
true;
3144 jQuery.Callbacks =
function( options ) {
3148 options = typeof options ===
"string" ?
3149 createOptions( options ) :
3150 jQuery.extend( {}, options );
3177 locked = options.once;
3181 fired = firing =
true;
3182 for ( ; queue.length; firingIndex = -1 ) {
3183 memory = queue.shift();
3184 while ( ++firingIndex < list.length ) {
3187 if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) ===
false &&
3188 options.stopOnFalse ) {
3191 firingIndex = list.length;
3198 if ( !options.memory ) {
3226 if ( memory && !firing ) {
3227 firingIndex = list.length - 1;
3228 queue.push( memory );
3231 (
function add( args ) {
3232 jQuery.each( args,
function( _, arg ) {
3233 if ( jQuery.isFunction( arg ) ) {
3234 if ( !options.unique || !
self.has( arg ) ) {
3237 }
else if ( arg && arg.length && jQuery.type( arg ) !==
"string" ) {
3245 if ( memory && !firing ) {
3253 remove:
function() {
3254 jQuery.each( arguments,
function( _, arg ) {
3256 while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
3257 list.splice( index, 1 );
3260 if ( index <= firingIndex ) {
3270 has:
function(
fn ) {
3272 jQuery.inArray(
fn, list ) > -1 :
3287 disable:
function() {
3288 locked = queue = [];
3292 disabled:
function() {
3300 locked = queue = [];
3306 locked:
function() {
3311 fireWith:
function( context, args ) {
3314 args = [ context, args.slice ? args.slice() : args ];
3325 self.fireWith(
this, arguments );
3341 Deferred:
function( func ) {
3345 [
"resolve",
"done", jQuery.Callbacks(
"once memory" ),
"resolved" ],
3346 [
"reject",
"fail", jQuery.Callbacks(
"once memory" ),
"rejected" ],
3347 [
"notify",
"progress", jQuery.Callbacks(
"memory" ) ]
3354 always:
function() {
3355 deferred.done( arguments ).fail( arguments );
3359 var fns = arguments;
3360 return jQuery.Deferred(
function( newDefer ) {
3361 jQuery.each( tuples,
function( i, tuple ) {
3362 var
fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
3365 deferred[ tuple[ 1 ] ](
function() {
3366 var returned = fn && fn.apply(
this, arguments );
3367 if ( returned && jQuery.isFunction( returned.promise ) ) {
3369 .progress( newDefer.notify )
3370 .done( newDefer.resolve )
3371 .fail( newDefer.reject );
3373 newDefer[ tuple[ 0 ] +
"With" ](
3374 this === promise ? newDefer.promise() :
this,
3375 fn ? [ returned ] : arguments
3386 promise:
function( obj ) {
3387 return obj != null ? jQuery.extend( obj, promise ) : promise;
3393 promise.pipe = promise.then;
3396 jQuery.each( tuples,
function( i, tuple ) {
3397 var list = tuple[ 2 ],
3398 stateString = tuple[ 3 ];
3401 promise[ tuple[ 1 ] ] = list.add;
3404 if ( stateString ) {
3405 list.add(
function() {
3408 state = stateString;
3411 }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
3415 deferred[ tuple[ 0 ] ] =
function() {
3416 deferred[ tuple[ 0 ] +
"With" ](
this === deferred ? promise :
this, arguments );
3419 deferred[ tuple[ 0 ] +
"With" ] = list.fireWith;
3423 promise.promise( deferred );
3427 func.call( deferred, deferred );
3435 when:
function( subordinate ) {
3437 resolveValues = slice.call( arguments ),
3438 length = resolveValues.length,
3441 remaining = length !== 1 ||
3442 ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
3446 deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
3449 updateFunc =
function( i, contexts, values ) {
3450 return function( value ) {
3451 contexts[ i ] =
this;
3452 values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
3453 if ( values === progressValues ) {
3454 deferred.notifyWith( contexts, values );
3455 }
else if ( !( --remaining ) ) {
3456 deferred.resolveWith( contexts, values );
3461 progressValues, progressContexts, resolveContexts;
3465 progressValues =
new Array( length );
3466 progressContexts =
new Array( length );
3467 resolveContexts =
new Array( length );
3468 for ( ; i < length; i++ ) {
3469 if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
3470 resolveValues[ i ].promise()
3471 .progress( updateFunc( i, progressContexts, progressValues ) )
3472 .done( updateFunc( i, resolveContexts, resolveValues ) )
3473 .fail( deferred.reject );
3482 deferred.resolveWith( resolveContexts, resolveValues );
3485 return deferred.promise();
3493 jQuery.fn.ready =
function(
fn ) {
3496 jQuery.ready.promise().done(
fn );
3511 holdReady:
function( hold ) {
3515 jQuery.ready(
true );
3520 ready:
function( wait ) {
3523 if ( wait ===
true ? --jQuery.readyWait : jQuery.isReady ) {
3528 jQuery.isReady =
true;
3531 if ( wait !==
true && --jQuery.readyWait > 0 ) {
3536 readyList.resolveWith( document, [ jQuery ] );
3539 if ( jQuery.fn.triggerHandler ) {
3540 jQuery( document ).triggerHandler(
"ready" );
3541 jQuery( document ).off(
"ready" );
3549 function completed() {
3550 document.removeEventListener(
"DOMContentLoaded", completed );
3551 window.removeEventListener(
"load", completed );
3555 jQuery.ready.promise =
function( obj ) {
3558 readyList = jQuery.Deferred();
3564 if ( document.readyState ===
"complete" ||
3565 ( document.readyState !==
"loading" && !document.documentElement.doScroll ) ) {
3568 window.setTimeout( jQuery.ready );
3573 document.addEventListener(
"DOMContentLoaded", completed );
3576 window.addEventListener(
"load", completed );
3579 return readyList.promise( obj );
3583 jQuery.ready.promise();
3590 var access =
function( elems,
fn, key, value, chainable, emptyGet, raw ) {
3596 if ( jQuery.type( key ) ===
"object" ) {
3599 access( elems,
fn, i, key[ i ],
true, emptyGet, raw );
3606 if ( !jQuery.isFunction( value ) ) {
3614 fn.call( elems, value );
3620 fn =
function( elem, key, value ) {
3621 return bulk.call( jQuery( elem ), value );
3627 for ( ; i < len; i++ ) {
3629 elems[ i ], key, raw ?
3631 value.call( elems[ i ], i,
fn( elems[ i ], key ) )
3643 len ?
fn( elems[ 0 ], key ) : emptyGet;
3645 var acceptData =
function( owner ) {
3654 return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
3661 this.expando = jQuery.expando + Data.uid++;
3668 register:
function( owner, initial ) {
3669 var value = initial || {};
3673 if ( owner.nodeType ) {
3674 owner[ this.expando ] = value;
3680 Object.defineProperty( owner, this.expando, {
3686 return owner[ this.expando ];
3688 cache:
function( owner ) {
3693 if ( !acceptData( owner ) ) {
3698 var value = owner[ this.expando ];
3707 if ( acceptData( owner ) ) {
3711 if ( owner.nodeType ) {
3712 owner[ this.expando ] = value;
3718 Object.defineProperty( owner, this.expando, {
3728 set:
function( owner, data, value ) {
3730 cache = this.cache( owner );
3733 if ( typeof data ===
"string" ) {
3734 cache[ data ] = value;
3740 for ( prop in data ) {
3741 cache[ prop ] = data[ prop ];
3746 get:
function( owner, key ) {
3748 this.cache( owner ) :
3749 owner[ this.expando ] && owner[ this.expando ][ key ];
3751 access:
function( owner, key, value ) {
3766 ( ( key && typeof key ===
"string" ) && value ===
undefined ) ) {
3768 stored = this.
get( owner, key );
3771 stored : this.
get( owner, jQuery.camelCase( key ) );
3780 this.
set( owner, key, value );
3784 return value !==
undefined ? value : key;
3786 remove:
function( owner, key ) {
3788 cache = owner[ this.expando ];
3795 this.
register( owner );
3800 if ( jQuery.isArray( key ) ) {
3808 name = key.concat( key.map( jQuery.camelCase ) );
3810 camel = jQuery.camelCase( key );
3813 if ( key in cache ) {
3814 name = [ key, camel ];
3820 name = name in cache ?
3821 [ name ] : ( name.match( rnotwhite ) || [] );
3828 delete cache[ name[ i ] ];
3833 if ( key ===
undefined || jQuery.isEmptyObject( cache ) ) {
3839 if ( owner.nodeType ) {
3842 delete owner[ this.expando ];
3846 hasData:
function( owner ) {
3847 var cache = owner[ this.expando ];
3848 return cache !==
undefined && !jQuery.isEmptyObject( cache );
3851 var dataPriv =
new Data();
3853 var dataUser =
new Data();
3867 var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
3868 rmultiDash = /[A-Z]/g;
3870 function dataAttr( elem, key, data ) {
3875 if ( data ===
undefined && elem.nodeType === 1 ) {
3876 name =
"data-" + key.replace( rmultiDash,
"-$&" ).toLowerCase();
3877 data = elem.getAttribute( name );
3879 if ( typeof data ===
"string" ) {
3881 data = data ===
"true" ?
true :
3882 data ===
"false" ?
false :
3883 data ===
"null" ? null :
3886 +data +
"" === data ? +data :
3887 rbrace.test( data ) ? jQuery.parseJSON( data ) :
3892 dataUser.set( elem, key, data );
3901 hasData:
function( elem ) {
3902 return dataUser.hasData( elem ) || dataPriv.hasData( elem );
3905 data:
function( elem, name, data ) {
3906 return dataUser.access( elem, name, data );
3909 removeData:
function( elem, name ) {
3910 dataUser.remove( elem, name );
3915 _data:
function( elem, name, data ) {
3916 return dataPriv.access( elem, name, data );
3919 _removeData:
function( elem, name ) {
3920 dataPriv.remove( elem, name );
3925 data:
function( key, value ) {
3928 attrs = elem && elem.attributes;
3932 if ( this.length ) {
3933 data = dataUser.get( elem );
3935 if ( elem.nodeType === 1 && !dataPriv.get( elem,
"hasDataAttrs" ) ) {
3942 name = attrs[ i ].name;
3943 if ( name.indexOf(
"data-" ) === 0 ) {
3944 name = jQuery.camelCase( name.slice( 5 ) );
3945 dataAttr( elem, name, data[ name ] );
3949 dataPriv.set( elem,
"hasDataAttrs",
true );
3957 if ( typeof key ===
"object" ) {
3958 return this.
each(
function() {
3959 dataUser.set(
this, key );
3963 return access(
this,
function( value ) {
3975 data = dataUser.get( elem, key ) ||
3979 dataUser.get( elem, key.replace( rmultiDash,
"-$&" ).toLowerCase() );
3985 camelKey = jQuery.camelCase( key );
3989 data = dataUser.get( elem, camelKey );
3996 data = dataAttr( elem, camelKey,
undefined );
4006 camelKey = jQuery.camelCase( key );
4007 this.
each(
function() {
4011 var data = dataUser.get(
this, camelKey );
4016 dataUser.set(
this, camelKey, value );
4021 if ( key.indexOf(
"-" ) > -1 && data !==
undefined ) {
4022 dataUser.set(
this, key, value );
4025 }, null, value, arguments.length > 1, null, true );
4028 removeData:
function( key ) {
4029 return this.
each(
function() {
4030 dataUser.remove(
this, key );
4037 queue:
function( elem, type, data ) {
4041 type = ( type ||
"fx" ) +
"queue";
4042 queue = dataPriv.get( elem, type );
4046 if ( !queue || jQuery.isArray( data ) ) {
4047 queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
4056 dequeue:
function( elem, type ) {
4057 type = type ||
"fx";
4059 var queue = jQuery.queue( elem, type ),
4060 startLength = queue.length,
4062 hooks = jQuery._queueHooks( elem, type ),
4064 jQuery.dequeue( elem, type );
4068 if (
fn ===
"inprogress" ) {
4077 if ( type ===
"fx" ) {
4078 queue.unshift(
"inprogress" );
4083 fn.call( elem, next, hooks );
4086 if ( !startLength && hooks ) {
4092 _queueHooks:
function( elem, type ) {
4093 var key = type +
"queueHooks";
4094 return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
4095 empty: jQuery.Callbacks(
"once memory" ).add(
function() {
4096 dataPriv.remove( elem, [ type +
"queue", key ] );
4103 queue:
function( type, data ) {
4106 if ( typeof type !==
"string" ) {
4112 if ( arguments.length < setter ) {
4113 return jQuery.queue(
this[ 0 ], type );
4118 this.
each(
function() {
4119 var queue = jQuery.queue(
this, type, data );
4122 jQuery._queueHooks(
this, type );
4124 if ( type ===
"fx" && queue[ 0 ] !==
"inprogress" ) {
4125 jQuery.dequeue(
this, type );
4129 dequeue:
function( type ) {
4130 return this.
each(
function() {
4131 jQuery.dequeue(
this, type );
4134 clearQueue:
function( type ) {
4135 return this.queue( type ||
"fx", [] );
4140 promise:
function( type, obj ) {
4143 defer = jQuery.Deferred(),
4146 resolve =
function() {
4147 if ( !( --count ) ) {
4148 defer.resolveWith( elements, [ elements ] );
4152 if ( typeof type !==
"string" ) {
4156 type = type ||
"fx";
4159 tmp = dataPriv.get( elements[ i ], type +
"queueHooks" );
4160 if ( tmp && tmp.empty ) {
4162 tmp.empty.add( resolve );
4166 return defer.promise( obj );
4169 var pnum = ( /[+-]?(?:
\d*\.|)\
d+(?:[eE][+-]?\
d+|)/ ).source;
4171 var rcssNum =
new RegExp(
"^(?:([+-])=|)(" + pnum +
")([a-z%]*)$",
"i" );
4174 var cssExpand = [
"Top",
"Right",
"Bottom",
"Left" ];
4176 var isHidden =
function( elem, el ) {
4181 return jQuery.css( elem,
"display" ) ===
"none" ||
4182 !jQuery.contains( elem.ownerDocument, elem );
4187 function adjustCSS( elem, prop, valueParts, tween ) {
4191 currentValue = tween ?
4192 function() {
return tween.cur(); } :
4193 function() {
return jQuery.css( elem, prop,
"" ); },
4194 initial = currentValue(),
4195 unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ?
"" :
"px" ),
4198 initialInUnit = ( jQuery.cssNumber[ prop ] || unit !==
"px" && +initial ) &&
4199 rcssNum.exec( jQuery.css( elem, prop ) );
4201 if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
4204 unit = unit || initialInUnit[ 3 ];
4207 valueParts = valueParts || [];
4210 initialInUnit = +initial || 1;
4216 scale = scale ||
".5";
4219 initialInUnit = initialInUnit / scale;
4220 jQuery.style( elem, prop, initialInUnit + unit );
4225 scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations
4230 initialInUnit = +initialInUnit || +initial || 0;
4233 adjusted = valueParts[ 1 ] ?
4234 initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
4238 tween.start = initialInUnit;
4239 tween.end = adjusted;
4244 var rcheckableType = ( /^(?:checkbox|radio)$/i );
4246 var rtagName = ( /<([\w:-]+)/ );
4248 var rscriptType = ( /^$|\/(?:java|ecma)script/i );
4256 option: [ 1,
"<select multiple='multiple'>",
"</select>" ],
4261 thead: [ 1,
"<table>",
"</table>" ],
4262 col: [ 2,
"<table><colgroup>",
"</colgroup></table>" ],
4263 tr: [ 2,
"<table><tbody>",
"</tbody></table>" ],
4264 td: [ 3,
"<table><tbody><tr>",
"</tr></tbody></table>" ],
4266 _default: [ 0,
"",
"" ]
4270 wrapMap.optgroup = wrapMap.option;
4272 wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
4273 wrapMap.th = wrapMap.td;
4276 function getAll( context, tag ) {
4280 var ret = typeof context.getElementsByTagName !==
"undefined" ?
4281 context.getElementsByTagName( tag ||
"*" ) :
4282 typeof context.querySelectorAll !==
"undefined" ?
4283 context.querySelectorAll( tag ||
"*" ) :
4286 return tag ===
undefined || tag && jQuery.nodeName( context, tag ) ?
4287 jQuery.merge( [ context ], ret ) :
4293 function setGlobalEval( elems, refElements ) {
4297 for ( ; i < l; i++ ) {
4301 !refElements || dataPriv.get( refElements[ i ],
"globalEval" )
4307 var rhtml = /<|&#?\w+;/;
4309 function buildFragment( elems, context, scripts, selection, ignored ) {
4310 var elem, tmp, tag, wrap, contains, j,
4311 fragment = context.createDocumentFragment(),
4316 for ( ; i < l; i++ ) {
4319 if ( elem || elem === 0 ) {
4322 if ( jQuery.type( elem ) ===
"object" ) {
4326 jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
4329 }
else if ( !rhtml.test( elem ) ) {
4330 nodes.push( context.createTextNode( elem ) );
4334 tmp = tmp || fragment.appendChild( context.createElement(
"div" ) );
4337 tag = ( rtagName.exec( elem ) || [
"",
"" ] )[ 1 ].toLowerCase();
4338 wrap = wrapMap[ tag ] || wrapMap._default;
4339 tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
4344 tmp = tmp.lastChild;
4349 jQuery.merge( nodes, tmp.childNodes );
4352 tmp = fragment.firstChild;
4355 tmp.textContent =
"";
4361 fragment.textContent =
"";
4364 while ( ( elem = nodes[ i++ ] ) ) {
4367 if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
4369 ignored.push( elem );
4374 contains = jQuery.contains( elem.ownerDocument, elem );
4377 tmp = getAll( fragment.appendChild( elem ),
"script" );
4381 setGlobalEval( tmp );
4387 while ( ( elem = tmp[ j++ ] ) ) {
4388 if ( rscriptType.test( elem.type ||
"" ) ) {
4389 scripts.push( elem );
4400 var fragment = document.createDocumentFragment(),
4401 div = fragment.appendChild( document.createElement(
"div" ) ),
4402 input = document.createElement(
"input" );
4408 input.setAttribute(
"type",
"radio" );
4409 input.setAttribute(
"checked",
"checked" );
4410 input.setAttribute(
"name",
"t" );
4412 div.appendChild( input );
4416 support.checkClone = div.cloneNode(
true ).cloneNode(
true ).lastChild.checked;
4420 div.innerHTML =
"<textarea>x</textarea>";
4421 support.noCloneChecked = !!div.cloneNode(
true ).lastChild.defaultValue;
4427 rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
4428 rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
4430 function returnTrue() {
4434 function returnFalse() {
4440 function safeActiveElement() {
4442 return document.activeElement;
4446 function on( elem, types, selector, data,
fn, one ) {
4450 if ( typeof types ===
"object" ) {
4453 if ( typeof selector !==
"string" ) {
4456 data = data || selector;
4459 for ( type in types ) {
4460 on( elem, type, selector, data, types[ type ], one );
4465 if ( data == null &&
fn == null ) {
4470 }
else if (
fn == null ) {
4471 if ( typeof selector ===
"string" ) {
4484 if (
fn ===
false ) {
4492 fn =
function( event ) {
4495 jQuery().off( event );
4496 return origFn.apply(
this, arguments );
4500 fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
4502 return elem.each(
function() {
4503 jQuery.event.add(
this, types,
fn, data, selector );
4515 add:
function( elem, types, handler, data, selector ) {
4517 var handleObjIn, eventHandle, tmp,
4518 events, t, handleObj,
4519 special, handlers, type, namespaces, origType,
4520 elemData = dataPriv.get( elem );
4528 if ( handler.handler ) {
4529 handleObjIn = handler;
4530 handler = handleObjIn.handler;
4531 selector = handleObjIn.selector;
4535 if ( !handler.guid ) {
4536 handler.guid = jQuery.guid++;
4540 if ( !( events = elemData.events ) ) {
4541 events = elemData.events = {};
4543 if ( !( eventHandle = elemData.handle ) ) {
4544 eventHandle = elemData.handle =
function(
e ) {
4548 return typeof jQuery !==
"undefined" && jQuery.event.triggered !==
e.type ?
4549 jQuery.event.dispatch.apply( elem, arguments ) :
undefined;
4554 types = ( types ||
"" ).match( rnotwhite ) || [
"" ];
4557 tmp = rtypenamespace.exec( types[ t ] ) || [];
4558 type = origType = tmp[ 1 ];
4559 namespaces = ( tmp[ 2 ] ||
"" ).split(
"." ).sort();
4567 special = jQuery.event.special[ type ] || {};
4570 type = ( selector ? special.delegateType : special.bindType ) || type;
4573 special = jQuery.event.special[ type ] || {};
4576 handleObj = jQuery.extend( {
4583 needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
4584 namespace: namespaces.join(
"." )
4588 if ( !( handlers = events[ type ] ) ) {
4589 handlers = events[ type ] = [];
4590 handlers.delegateCount = 0;
4593 if ( !special.setup ||
4594 special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
4596 if ( elem.addEventListener ) {
4597 elem.addEventListener( type, eventHandle );
4602 if ( special.add ) {
4603 special.add.call( elem, handleObj );
4605 if ( !handleObj.handler.guid ) {
4606 handleObj.handler.guid = handler.guid;
4612 handlers.splice( handlers.delegateCount++, 0, handleObj );
4614 handlers.push( handleObj );
4618 jQuery.event.global[ type ] =
true;
4624 remove:
function( elem, types, handler, selector, mappedTypes ) {
4626 var j, origCount, tmp,
4627 events, t, handleObj,
4628 special, handlers, type, namespaces, origType,
4629 elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
4631 if ( !elemData || !( events = elemData.events ) ) {
4636 types = ( types ||
"" ).match( rnotwhite ) || [
"" ];
4639 tmp = rtypenamespace.exec( types[ t ] ) || [];
4640 type = origType = tmp[ 1 ];
4641 namespaces = ( tmp[ 2 ] ||
"" ).split(
"." ).sort();
4645 for ( type in events ) {
4646 jQuery.event.remove( elem, type + types[ t ], handler, selector,
true );
4651 special = jQuery.event.special[ type ] || {};
4652 type = ( selector ? special.delegateType : special.bindType ) || type;
4653 handlers = events[ type ] || [];
4655 new RegExp(
"(^|\\.)" + namespaces.join(
"\\.(?:.*\\.|)" ) +
"(\\.|$)" );
4658 origCount = j = handlers.length;
4660 handleObj = handlers[ j ];
4662 if ( ( mappedTypes || origType === handleObj.origType ) &&
4663 ( !handler || handler.guid === handleObj.guid ) &&
4664 ( !tmp || tmp.test( handleObj.namespace ) ) &&
4665 ( !selector || selector === handleObj.selector ||
4666 selector ===
"**" && handleObj.selector ) ) {
4667 handlers.splice( j, 1 );
4669 if ( handleObj.selector ) {
4670 handlers.delegateCount--;
4672 if ( special.remove ) {
4673 special.remove.call( elem, handleObj );
4680 if ( origCount && !handlers.length ) {
4681 if ( !special.teardown ||
4682 special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
4684 jQuery.removeEvent( elem, type, elemData.handle );
4687 delete events[ type ];
4692 if ( jQuery.isEmptyObject( events ) ) {
4693 dataPriv.remove( elem,
"handle events" );
4697 dispatch:
function( event ) {
4700 event = jQuery.event.fix( event );
4702 var i, j, ret, matched, handleObj,
4704 args = slice.call( arguments ),
4705 handlers = ( dataPriv.get(
this,
"events" ) || {} )[ event.type ] || [],
4706 special = jQuery.event.special[ event.type ] || {};
4710 event.delegateTarget =
this;
4713 if ( special.preDispatch && special.preDispatch.call(
this, event ) === false ) {
4718 handlerQueue = jQuery.event.handlers.call(
this, event, handlers );
4722 while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
4723 event.currentTarget = matched.elem;
4726 while ( ( handleObj = matched.handlers[ j++ ] ) &&
4727 !
event.isImmediatePropagationStopped() ) {
4731 if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {
4733 event.handleObj = handleObj;
4734 event.data = handleObj.data;
4736 ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
4737 handleObj.handler ).apply( matched.elem, args );
4740 if ( ( event.result = ret ) ===
false ) {
4741 event.preventDefault();
4742 event.stopPropagation();
4750 if ( special.postDispatch ) {
4751 special.postDispatch.call(
this, event );
4754 return event.result;
4757 handlers:
function( event, handlers ) {
4758 var i, matches, sel, handleObj,
4760 delegateCount = handlers.delegateCount,
4769 if ( delegateCount && cur.nodeType &&
4770 ( event.type !==
"click" || isNaN( event.button ) || event.button < 1 ) ) {
4772 for ( ; cur !==
this; cur = cur.parentNode || this ) {
4776 if ( cur.nodeType === 1 && ( cur.disabled !==
true || event.type !==
"click" ) ) {
4778 for ( i = 0; i < delegateCount; i++ ) {
4779 handleObj = handlers[ i ];
4782 sel = handleObj.selector +
" ";
4785 matches[ sel ] = handleObj.needsContext ?
4786 jQuery( sel,
this ).index( cur ) > -1 :
4787 jQuery.find( sel,
this, null, [ cur ] ).length;
4789 if ( matches[ sel ] ) {
4790 matches.push( handleObj );
4793 if ( matches.length ) {
4794 handlerQueue.push( { elem: cur, handlers: matches } );
4801 if ( delegateCount < handlers.length ) {
4802 handlerQueue.push( { elem:
this, handlers: handlers.slice( delegateCount ) } );
4805 return handlerQueue;
4809 props: (
"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " +
4810 "metaKey relatedTarget shiftKey target timeStamp view which" ).split(
" " ),
4815 props:
"char charCode key keyCode".split(
" " ),
4816 filter:
function( event, original ) {
4819 if ( event.which == null ) {
4820 event.which = original.charCode != null ? original.charCode : original.keyCode;
4828 props: (
"button buttons clientX clientY offsetX offsetY pageX pageY " +
4829 "screenX screenY toElement" ).split(
" " ),
4830 filter:
function( event, original ) {
4831 var eventDoc, doc, body,
4832 button = original.button;
4835 if ( event.pageX == null && original.clientX != null ) {
4836 eventDoc =
event.target.ownerDocument || document;
4837 doc = eventDoc.documentElement;
4838 body = eventDoc.body;
4840 event.pageX = original.clientX +
4841 ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -
4842 ( doc && doc.clientLeft || body && body.clientLeft || 0 );
4843 event.pageY = original.clientY +
4844 ( doc && doc.scrollTop || body && body.scrollTop || 0 ) -
4845 ( doc && doc.clientTop || body && body.clientTop || 0 );
4850 if ( !event.which && button !==
undefined ) {
4851 event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
4858 fix:
function( event ) {
4859 if ( event[ jQuery.expando ] ) {
4866 originalEvent = event,
4867 fixHook = this.fixHooks[ type ];
4870 this.fixHooks[ type ] = fixHook =
4871 rmouseEvent.test( type ) ? this.mouseHooks :
4872 rkeyEvent.test( type ) ? this.keyHooks :
4875 copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
4877 event =
new jQuery.Event( originalEvent );
4882 event[ prop ] = originalEvent[ prop ];
4887 if ( !event.target ) {
4888 event.target = document;
4893 if ( event.target.nodeType === 3 ) {
4894 event.target =
event.target.parentNode;
4897 return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
4909 trigger:
function() {
4910 if (
this !== safeActiveElement() && this.focus ) {
4915 delegateType:
"focusin" 4918 trigger:
function() {
4919 if (
this === safeActiveElement() && this.blur ) {
4924 delegateType:
"focusout" 4929 trigger:
function() {
4930 if ( this.type ===
"checkbox" && this.click && jQuery.nodeName(
this,
"input" ) ) {
4937 _default:
function( event ) {
4938 return jQuery.nodeName( event.target,
"a" );
4943 postDispatch:
function( event ) {
4947 if ( event.result !==
undefined && event.originalEvent ) {
4948 event.originalEvent.returnValue =
event.result;
4955 jQuery.removeEvent =
function( elem, type, handle ) {
4958 if ( elem.removeEventListener ) {
4959 elem.removeEventListener( type, handle );
4963 jQuery.Event =
function( src, props ) {
4966 if ( !(
this instanceof jQuery.Event ) ) {
4967 return new jQuery.Event( src, props );
4971 if ( src && src.type ) {
4972 this.originalEvent = src;
4973 this.type = src.type;
4977 this.isDefaultPrevented = src.defaultPrevented ||
4981 src.returnValue ===
false ?
4992 jQuery.extend(
this, props );
4996 this.timeStamp = src && src.timeStamp || jQuery.now();
4999 this[ jQuery.expando ] =
true;
5004 jQuery.Event.prototype = {
5005 constructor: jQuery.Event,
5006 isDefaultPrevented: returnFalse,
5007 isPropagationStopped: returnFalse,
5008 isImmediatePropagationStopped: returnFalse,
5011 preventDefault:
function() {
5012 var
e = this.originalEvent;
5014 this.isDefaultPrevented = returnTrue;
5016 if ( e && !this.isSimulated ) {
5020 stopPropagation:
function() {
5021 var
e = this.originalEvent;
5023 this.isPropagationStopped = returnTrue;
5025 if ( e && !this.isSimulated ) {
5026 e.stopPropagation();
5029 stopImmediatePropagation:
function() {
5030 var
e = this.originalEvent;
5032 this.isImmediatePropagationStopped = returnTrue;
5034 if ( e && !this.isSimulated ) {
5035 e.stopImmediatePropagation();
5038 this.stopPropagation();
5051 mouseenter:
"mouseover",
5052 mouseleave:
"mouseout",
5053 pointerenter:
"pointerover",
5054 pointerleave:
"pointerout" 5055 },
function( orig, fix ) {
5056 jQuery.event.special[ orig ] = {
5060 handle:
function( event ) {
5063 related =
event.relatedTarget,
5064 handleObj =
event.handleObj;
5068 if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
5069 event.type = handleObj.origType;
5070 ret = handleObj.handler.apply(
this, arguments );
5079 on:
function( types, selector, data,
fn ) {
5080 return on(
this, types, selector, data,
fn );
5082 one:
function( types, selector, data,
fn ) {
5083 return on(
this, types, selector, data,
fn, 1 );
5085 off:
function( types, selector,
fn ) {
5086 var handleObj, type;
5087 if ( types && types.preventDefault && types.handleObj ) {
5090 handleObj = types.handleObj;
5091 jQuery( types.delegateTarget ).off(
5092 handleObj.namespace ?
5093 handleObj.origType +
"." + handleObj.namespace :
5100 if ( typeof types ===
"object" ) {
5103 for ( type in types ) {
5104 this.off( type, selector, types[ type ] );
5108 if ( selector ===
false || typeof selector ===
"function" ) {
5114 if (
fn ===
false ) {
5117 return this.
each(
function() {
5118 jQuery.event.remove(
this, types,
fn, selector );
5125 rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,
5130 rnoInnerhtml = /<script|<style|<link/i,
5133 rchecked = /checked\
s*(?:[^=]|=\
s*.checked.)/i,
5134 rscriptTypeMasked = /^
true\/(.*)/,
5135 rcleanScript = /^
\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>
\s*$/g;
5138 function manipulationTarget( elem, content ) {
5139 return jQuery.nodeName( elem,
"table" ) &&
5140 jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild,
"tr" ) ?
5142 elem.getElementsByTagName(
"tbody" )[ 0 ] ||
5143 elem.appendChild( elem.ownerDocument.createElement(
"tbody" ) ) :
5148 function disableScript( elem ) {
5149 elem.type = ( elem.getAttribute(
"type" ) !== null ) +
"/" + elem.type;
5152 function restoreScript( elem ) {
5153 var match = rscriptTypeMasked.exec( elem.type );
5156 elem.type = match[ 1 ];
5158 elem.removeAttribute(
"type" );
5164 function cloneCopyEvent( src, dest ) {
5165 var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
5167 if ( dest.nodeType !== 1 ) {
5172 if ( dataPriv.hasData( src ) ) {
5173 pdataOld = dataPriv.access( src );
5174 pdataCur = dataPriv.set( dest, pdataOld );
5175 events = pdataOld.events;
5178 delete pdataCur.handle;
5179 pdataCur.events = {};
5181 for ( type in events ) {
5182 for ( i = 0, l = events[ type ].length; i < l; i++ ) {
5183 jQuery.event.add( dest, type, events[ type ][ i ] );
5190 if ( dataUser.hasData( src ) ) {
5191 udataOld = dataUser.access( src );
5192 udataCur = jQuery.extend( {}, udataOld );
5194 dataUser.set( dest, udataCur );
5199 function fixInput( src, dest ) {
5200 var nodeName = dest.nodeName.toLowerCase();
5203 if ( nodeName ===
"input" && rcheckableType.test( src.type ) ) {
5204 dest.checked = src.checked;
5207 }
else if ( nodeName ===
"input" || nodeName ===
"textarea" ) {
5208 dest.defaultValue = src.defaultValue;
5212 function domManip( collection, args, callback, ignored ) {
5215 args = concat.apply( [], args );
5217 var fragment, first, scripts, hasScripts, node, doc,
5219 l = collection.length,
5222 isFunction = jQuery.isFunction( value );
5226 ( l > 1 && typeof value ===
"string" &&
5227 !support.checkClone && rchecked.test( value ) ) ) {
5228 return collection.each(
function( index ) {
5229 var
self = collection.eq( index );
5231 args[ 0 ] = value.call(
this, index,
self.html() );
5233 domManip(
self, args, callback, ignored );
5238 fragment = buildFragment( args, collection[ 0 ].ownerDocument,
false, collection, ignored );
5239 first = fragment.firstChild;
5241 if ( fragment.childNodes.length === 1 ) {
5246 if ( first || ignored ) {
5247 scripts = jQuery.map( getAll( fragment,
"script" ), disableScript );
5248 hasScripts = scripts.length;
5253 for ( ; i < l; i++ ) {
5256 if ( i !== iNoClone ) {
5257 node = jQuery.clone( node,
true,
true );
5264 jQuery.merge( scripts, getAll( node,
"script" ) );
5268 callback.call( collection[ i ], node, i );
5272 doc = scripts[ scripts.length - 1 ].ownerDocument;
5275 jQuery.map( scripts, restoreScript );
5278 for ( i = 0; i < hasScripts; i++ ) {
5279 node = scripts[ i ];
5280 if ( rscriptType.test( node.type ||
"" ) &&
5281 !dataPriv.access( node,
"globalEval" ) &&
5282 jQuery.contains( doc, node ) ) {
5287 if ( jQuery._evalUrl ) {
5288 jQuery._evalUrl( node.src );
5291 jQuery.globalEval( node.textContent.replace( rcleanScript,
"" ) );
5302 function remove( elem, selector, keepData ) {
5304 nodes = selector ? jQuery.filter( selector, elem ) : elem,
5307 for ( ; ( node = nodes[ i ] ) != null; i++ ) {
5308 if ( !keepData && node.nodeType === 1 ) {
5309 jQuery.cleanData( getAll( node ) );
5312 if ( node.parentNode ) {
5313 if ( keepData && jQuery.contains( node.ownerDocument, node ) ) {
5314 setGlobalEval( getAll( node,
"script" ) );
5316 node.parentNode.removeChild( node );
5324 htmlPrefilter:
function( html ) {
5325 return html.replace( rxhtmlTag,
"<$1></$2>" );
5328 clone:
function( elem, dataAndEvents, deepDataAndEvents ) {
5329 var i, l, srcElements, destElements,
5330 clone = elem.cloneNode(
true ),
5331 inPage = jQuery.contains( elem.ownerDocument, elem );
5334 if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
5335 !jQuery.isXMLDoc( elem ) ) {
5338 destElements = getAll( clone );
5339 srcElements = getAll( elem );
5341 for ( i = 0, l = srcElements.length; i < l; i++ ) {
5342 fixInput( srcElements[ i ], destElements[ i ] );
5347 if ( dataAndEvents ) {
5348 if ( deepDataAndEvents ) {
5349 srcElements = srcElements || getAll( elem );
5350 destElements = destElements || getAll( clone );
5352 for ( i = 0, l = srcElements.length; i < l; i++ ) {
5353 cloneCopyEvent( srcElements[ i ], destElements[ i ] );
5356 cloneCopyEvent( elem, clone );
5361 destElements = getAll( clone,
"script" );
5362 if ( destElements.length > 0 ) {
5363 setGlobalEval( destElements, !inPage && getAll( elem,
"script" ) );
5370 cleanData:
function( elems ) {
5371 var data, elem, type,
5372 special = jQuery.event.special,
5375 for ( ; ( elem = elems[ i ] ) !==
undefined; i++ ) {
5376 if ( acceptData( elem ) ) {
5377 if ( ( data = elem[ dataPriv.expando ] ) ) {
5378 if ( data.events ) {
5379 for ( type in data.events ) {
5380 if ( special[ type ] ) {
5381 jQuery.event.remove( elem, type );
5385 jQuery.removeEvent( elem, type, data.handle );
5394 if ( elem[ dataUser.expando ] ) {
5410 detach:
function( selector ) {
5411 return remove(
this, selector, true );
5414 remove:
function( selector ) {
5415 return remove(
this, selector );
5418 text:
function( value ) {
5419 return access(
this,
function( value ) {
5421 jQuery.text(
this ) :
5422 this.empty().each(
function() {
5423 if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5424 this.textContent = value;
5427 }, null, value, arguments.length );
5430 append:
function() {
5431 return domManip(
this, arguments,
function( elem ) {
5432 if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5433 var target = manipulationTarget(
this, elem );
5434 target.appendChild( elem );
5439 prepend:
function() {
5440 return domManip(
this, arguments,
function( elem ) {
5441 if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5442 var target = manipulationTarget(
this, elem );
5443 target.insertBefore( elem, target.firstChild );
5448 before:
function() {
5449 return domManip(
this, arguments,
function( elem ) {
5450 if ( this.parentNode ) {
5451 this.parentNode.insertBefore( elem,
this );
5457 return domManip(
this, arguments,
function( elem ) {
5458 if ( this.parentNode ) {
5459 this.parentNode.insertBefore( elem, this.nextSibling );
5468 for ( ; ( elem =
this[ i ] ) != null; i++ ) {
5469 if ( elem.nodeType === 1 ) {
5472 jQuery.cleanData( getAll( elem,
false ) );
5475 elem.textContent =
"";
5482 clone:
function( dataAndEvents, deepDataAndEvents ) {
5483 dataAndEvents = dataAndEvents == null ?
false : dataAndEvents;
5484 deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
5486 return this.map(
function() {
5487 return jQuery.clone(
this, dataAndEvents, deepDataAndEvents );
5491 html:
function( value ) {
5492 return access(
this,
function( value ) {
5493 var elem =
this[ 0 ] || {},
5497 if ( value ===
undefined && elem.nodeType === 1 ) {
5498 return elem.innerHTML;
5502 if ( typeof value ===
"string" && !rnoInnerhtml.test( value ) &&
5503 !wrapMap[ ( rtagName.exec( value ) || [
"",
"" ] )[ 1 ].toLowerCase() ] ) {
5505 value = jQuery.htmlPrefilter( value );
5508 for ( ; i < l; i++ ) {
5509 elem =
this[ i ] || {};
5512 if ( elem.nodeType === 1 ) {
5513 jQuery.cleanData( getAll( elem,
false ) );
5514 elem.innerHTML = value;
5525 this.empty().append( value );
5527 }, null, value, arguments.length );
5530 replaceWith:
function() {
5534 return domManip(
this, arguments,
function( elem ) {
5535 var parent = this.parentNode;
5537 if ( jQuery.inArray(
this, ignored ) < 0 ) {
5538 jQuery.cleanData( getAll(
this ) );
5540 parent.replaceChild( elem,
this );
5551 prependTo:
"prepend",
5552 insertBefore:
"before",
5553 insertAfter:
"after",
5554 replaceAll:
"replaceWith" 5555 },
function( name, original ) {
5556 jQuery.fn[ name ] =
function( selector ) {
5559 insert = jQuery( selector ),
5560 last = insert.length - 1,
5563 for ( ; i <= last; i++ ) {
5564 elems = i === last ?
this : this.clone(
true );
5565 jQuery( insert[ i ] )[ original ]( elems );
5569 push.apply( ret, elems.get() );
5572 return this.pushStack( ret );
5593 function actualDisplay( name, doc ) {
5594 var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
5596 display = jQuery.css( elem[ 0 ],
"display" );
5609 function defaultDisplay( nodeName ) {
5611 display = elemdisplay[ nodeName ];
5614 display = actualDisplay( nodeName, doc );
5617 if ( display ===
"none" || !display ) {
5620 iframe = ( iframe || jQuery(
"<iframe frameborder='0' width='0' height='0'/>" ) )
5621 .appendTo( doc.documentElement );
5624 doc = iframe[ 0 ].contentDocument;
5630 display = actualDisplay( nodeName, doc );
5635 elemdisplay[ nodeName ] = display;
5640 var rmargin = ( /^margin/ );
5642 var rnumnonpx =
new RegExp(
"^(" + pnum +
")(?!px)[a-z%]+$",
"i" );
5644 var getStyles =
function( elem ) {
5649 var view = elem.ownerDocument.defaultView;
5651 if ( !view || !view.opener ) {
5655 return view.getComputedStyle( elem );
5658 var swap =
function( elem, options, callback, args ) {
5663 for ( name in options ) {
5664 old[ name ] = elem.style[ name ];
5665 elem.style[ name ] = options[ name ];
5668 ret = callback.apply( elem, args || [] );
5671 for ( name in options ) {
5672 elem.style[ name ] = old[ name ];
5679 var documentElement = document.documentElement;
5684 var pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,
5685 container = document.createElement(
"div" ),
5686 div = document.createElement(
"div" );
5695 div.style.backgroundClip =
"content-box";
5696 div.cloneNode(
true ).style.backgroundClip =
"";
5697 support.clearCloneStyle = div.style.backgroundClip ===
"content-box";
5699 container.style.cssText =
"border:0;width:8px;height:0;top:0;left:-9999px;" +
5700 "padding:0;margin-top:1px;position:absolute";
5701 container.appendChild( div );
5705 function computeStyleTests() {
5710 "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;" +
5711 "position:relative;display:block;" +
5712 "margin:auto;border:1px;padding:1px;" +
5715 documentElement.appendChild( container );
5717 var divStyle = window.getComputedStyle( div );
5718 pixelPositionVal = divStyle.top !==
"1%";
5719 reliableMarginLeftVal = divStyle.marginLeft ===
"2px";
5720 boxSizingReliableVal = divStyle.width ===
"4px";
5724 div.style.marginRight =
"50%";
5725 pixelMarginRightVal = divStyle.marginRight ===
"4px";
5727 documentElement.removeChild( container );
5730 jQuery.extend( support, {
5731 pixelPosition:
function() {
5736 computeStyleTests();
5737 return pixelPositionVal;
5739 boxSizingReliable:
function() {
5740 if ( boxSizingReliableVal == null ) {
5741 computeStyleTests();
5743 return boxSizingReliableVal;
5745 pixelMarginRight:
function() {
5750 if ( boxSizingReliableVal == null ) {
5751 computeStyleTests();
5753 return pixelMarginRightVal;
5755 reliableMarginLeft:
function() {
5758 if ( boxSizingReliableVal == null ) {
5759 computeStyleTests();
5761 return reliableMarginLeftVal;
5763 reliableMarginRight:
function() {
5771 marginDiv = div.appendChild( document.createElement(
"div" ) );
5774 marginDiv.style.cssText = div.style.cssText =
5778 "-webkit-box-sizing:content-box;box-sizing:content-box;" +
5779 "display:block;margin:0;border:0;padding:0";
5780 marginDiv.style.marginRight = marginDiv.style.width =
"0";
5781 div.style.width =
"1px";
5782 documentElement.appendChild( container );
5784 ret = !parseFloat( window.getComputedStyle( marginDiv ).marginRight );
5786 documentElement.removeChild( container );
5787 div.removeChild( marginDiv );
5795 function curCSS( elem, name, computed ) {
5796 var width, minWidth, maxWidth, ret,
5799 computed = computed || getStyles( elem );
5800 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] :
undefined;
5805 if ( ( ret ===
"" || ret ===
undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) {
5806 ret = jQuery.style( elem, name );
5818 if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {
5821 width = style.width;
5822 minWidth = style.minWidth;
5823 maxWidth = style.maxWidth;
5826 style.minWidth = style.maxWidth = style.width = ret;
5827 ret = computed.width;
5830 style.width = width;
5831 style.minWidth = minWidth;
5832 style.maxWidth = maxWidth;
5845 function addGetHookIf( conditionFn, hookFn ) {
5850 if ( conditionFn() ) {
5859 return ( this.
get = hookFn ).apply(
this, arguments );
5870 rdisplayswap = /^(none|table(?!-
c[ea]).+)/,
5872 cssShow = { position:
"absolute", visibility:
"hidden", display:
"block" },
5873 cssNormalTransform = {
5878 cssPrefixes = [
"Webkit",
"O",
"Moz",
"ms" ],
5879 emptyStyle = document.createElement(
"div" ).style;
5882 function vendorPropName( name ) {
5885 if ( name in emptyStyle ) {
5890 var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
5891 i = cssPrefixes.length;
5894 name = cssPrefixes[ i ] + capName;
5895 if ( name in emptyStyle ) {
5901 function setPositiveNumber( elem, value, subtract ) {
5905 var matches = rcssNum.exec( value );
5909 Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] ||
"px" ) :
5913 function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
5914 var i = extra === ( isBorderBox ?
"border" :
"content" ) ?
5920 name ===
"width" ? 1 : 0,
5924 for ( ; i < 4; i += 2 ) {
5927 if ( extra ===
"margin" ) {
5928 val += jQuery.css( elem, extra + cssExpand[ i ],
true, styles );
5931 if ( isBorderBox ) {
5934 if ( extra ===
"content" ) {
5935 val -= jQuery.css( elem,
"padding" + cssExpand[ i ],
true, styles );
5939 if ( extra !==
"margin" ) {
5940 val -= jQuery.css( elem,
"border" + cssExpand[ i ] +
"Width",
true, styles );
5945 val += jQuery.css( elem,
"padding" + cssExpand[ i ],
true, styles );
5948 if ( extra !==
"padding" ) {
5949 val += jQuery.css( elem,
"border" + cssExpand[ i ] +
"Width",
true, styles );
5957 function getWidthOrHeight( elem, name, extra ) {
5960 var valueIsBorderBox =
true,
5961 val = name ===
"width" ? elem.offsetWidth : elem.offsetHeight,
5962 styles = getStyles( elem ),
5963 isBorderBox = jQuery.css( elem,
"boxSizing",
false, styles ) ===
"border-box";
5968 if ( val <= 0 || val == null ) {
5971 val = curCSS( elem, name, styles );
5972 if ( val < 0 || val == null ) {
5973 val = elem.style[ name ];
5977 if ( rnumnonpx.test( val ) ) {
5983 valueIsBorderBox = isBorderBox &&
5984 ( support.boxSizingReliable() || val === elem.style[ name ] );
5987 val = parseFloat( val ) || 0;
5992 augmentWidthOrHeight(
5995 extra || ( isBorderBox ?
"border" :
"content" ),
6002 function showHide( elements, show ) {
6003 var display, elem, hidden,
6006 length = elements.length;
6008 for ( ; index < length; index++ ) {
6009 elem = elements[ index ];
6010 if ( !elem.style ) {
6014 values[ index ] = dataPriv.get( elem,
"olddisplay" );
6015 display = elem.style.display;
6020 if ( !values[ index ] && display ===
"none" ) {
6021 elem.style.display =
"";
6027 if ( elem.style.display ===
"" && isHidden( elem ) ) {
6028 values[ index ] = dataPriv.access(
6031 defaultDisplay( elem.nodeName )
6035 hidden = isHidden( elem );
6037 if ( display !==
"none" || !hidden ) {
6041 hidden ? display : jQuery.css( elem,
"display" )
6049 for ( index = 0; index < length; index++ ) {
6050 elem = elements[ index ];
6051 if ( !elem.style ) {
6054 if ( !show || elem.style.display ===
"none" || elem.style.display ===
"" ) {
6055 elem.style.display = show ? values[ index ] ||
"" :
"none";
6068 get:
function( elem, computed ) {
6072 var ret = curCSS( elem,
"opacity" );
6073 return ret ===
"" ?
"1" : ret;
6081 "animationIterationCount":
true,
6082 "columnCount":
true,
6083 "fillOpacity":
true,
6103 style:
function( elem, name, value, extra ) {
6106 if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
6111 var ret, type, hooks,
6112 origName = jQuery.camelCase( name ),
6115 name = jQuery.cssProps[ origName ] ||
6116 ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
6119 hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6123 type = typeof value;
6126 if ( type ===
"string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
6127 value = adjustCSS( elem, name, ret );
6134 if ( value == null || value !== value ) {
6139 if ( type ===
"number" ) {
6140 value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ?
"" :
"px" );
6145 if ( !support.clearCloneStyle && value ===
"" && name.indexOf(
"background" ) === 0 ) {
6146 style[ name ] =
"inherit";
6150 if ( !hooks || !(
"set" in hooks ) ||
6151 ( value = hooks.set( elem, value, extra ) ) !==
undefined ) {
6153 style[ name ] = value;
6159 if ( hooks &&
"get" in hooks &&
6160 ( ret = hooks.get( elem,
false, extra ) ) !==
undefined ) {
6166 return style[ name ];
6170 css:
function( elem, name, extra, styles ) {
6171 var val, num, hooks,
6172 origName = jQuery.camelCase( name );
6175 name = jQuery.cssProps[ origName ] ||
6176 ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
6179 hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6182 if ( hooks &&
"get" in hooks ) {
6183 val = hooks.get( elem,
true, extra );
6188 val = curCSS( elem, name, styles );
6192 if ( val ===
"normal" && name in cssNormalTransform ) {
6193 val = cssNormalTransform[ name ];
6197 if ( extra ===
"" || extra ) {
6198 num = parseFloat( val );
6199 return extra ===
true || isFinite( num ) ? num || 0 : val;
6205 jQuery.each( [
"height",
"width" ],
function( i, name ) {
6206 jQuery.cssHooks[ name ] = {
6207 get:
function( elem, computed, extra ) {
6212 return rdisplayswap.test( jQuery.css( elem,
"display" ) ) &&
6213 elem.offsetWidth === 0 ?
6214 swap( elem, cssShow,
function() {
6215 return getWidthOrHeight( elem, name, extra );
6217 getWidthOrHeight( elem, name, extra );
6221 set:
function( elem, value, extra ) {
6223 styles = extra && getStyles( elem ),
6224 subtract = extra && augmentWidthOrHeight(
6228 jQuery.css( elem,
"boxSizing",
false, styles ) ===
"border-box",
6233 if ( subtract && ( matches = rcssNum.exec( value ) ) &&
6234 ( matches[ 3 ] ||
"px" ) !==
"px" ) {
6236 elem.style[ name ] = value;
6237 value = jQuery.css( elem, name );
6240 return setPositiveNumber( elem, value, subtract );
6245 jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
6246 function( elem, computed ) {
6248 return ( parseFloat( curCSS( elem,
"marginLeft" ) ) ||
6249 elem.getBoundingClientRect().left -
6250 swap( elem, { marginLeft: 0 }, function() {
6251 return elem.getBoundingClientRect().left;
6259 jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
6260 function( elem, computed ) {
6262 return swap( elem, {
"display":
"inline-block" },
6263 curCSS, [ elem,
"marginRight" ] );
6273 },
function( prefix, suffix ) {
6274 jQuery.cssHooks[ prefix + suffix ] = {
6275 expand:
function( value ) {
6280 parts = typeof value ===
"string" ? value.split(
" " ) : [ value ];
6282 for ( ; i < 4; i++ ) {
6283 expanded[ prefix + cssExpand[ i ] + suffix ] =
6284 parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
6291 if ( !rmargin.test( prefix ) ) {
6292 jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
6297 css:
function( name, value ) {
6298 return access(
this,
function( elem, name, value ) {
6303 if ( jQuery.isArray( name ) ) {
6304 styles = getStyles( elem );
6307 for ( ; i < len; i++ ) {
6308 map[ name[ i ] ] = jQuery.css( elem, name[ i ],
false, styles );
6315 jQuery.style( elem, name, value ) :
6316 jQuery.css( elem, name );
6317 }, name, value, arguments.length > 1 );
6320 return showHide(
this,
true );
6323 return showHide(
this );
6325 toggle:
function( state ) {
6326 if ( typeof state ===
"boolean" ) {
6327 return state ? this.show() : this.hide();
6330 return this.
each(
function() {
6331 if ( isHidden(
this ) ) {
6332 jQuery(
this ).show();
6334 jQuery(
this ).hide();
6341 function Tween( elem, options, prop, end, easing ) {
6342 return new Tween.prototype.init( elem, options, prop, end, easing );
6344 jQuery.Tween = Tween;
6348 init:
function( elem, options, prop, end, easing, unit ) {
6351 this.easing = easing || jQuery.easing._default;
6352 this.options = options;
6353 this.start = this.now = this.cur();
6355 this.unit = unit || ( jQuery.cssNumber[ prop ] ?
"" :
"px" );
6358 var hooks = Tween.propHooks[ this.prop ];
6360 return hooks && hooks.get ?
6362 Tween.propHooks._default.get(
this );
6364 run:
function( percent ) {
6366 hooks = Tween.propHooks[ this.prop ];
6368 if ( this.options.duration ) {
6369 this.pos = eased = jQuery.easing[ this.easing ](
6370 percent, this.options.duration * percent, 0, 1, this.options.duration
6373 this.pos = eased = percent;
6375 this.now = ( this.end - this.start ) * eased + this.start;
6377 if ( this.options.step ) {
6378 this.options.step.call( this.elem, this.now,
this );
6381 if ( hooks && hooks.set ) {
6384 Tween.propHooks._default.set(
this );
6390 Tween.prototype.init.prototype = Tween.prototype;
6394 get:
function( tween ) {
6399 if ( tween.elem.nodeType !== 1 ||
6400 tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
6401 return tween.elem[ tween.prop ];
6408 result = jQuery.css( tween.elem, tween.prop,
"" );
6411 return !result || result ===
"auto" ? 0 : result;
6413 set:
function( tween ) {
6418 if ( jQuery.fx.step[ tween.prop ] ) {
6419 jQuery.fx.step[ tween.prop ]( tween );
6420 }
else if ( tween.elem.nodeType === 1 &&
6421 ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||
6422 jQuery.cssHooks[ tween.prop ] ) ) {
6423 jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
6425 tween.elem[ tween.prop ] = tween.now;
6433 Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
6434 set:
function( tween ) {
6435 if ( tween.elem.nodeType && tween.elem.parentNode ) {
6436 tween.elem[ tween.prop ] = tween.now;
6442 linear:
function( p ) {
6445 swing:
function( p ) {
6446 return 0.5 - Math.cos( p * Math.PI ) / 2;
6451 jQuery.fx = Tween.prototype.init;
6454 jQuery.fx.step = {};
6461 rfxtypes = /^(?:
toggle|show|hide)$/,
6462 rrun = /queueHooks$/;
6465 function createFxNow() {
6466 window.setTimeout(
function() {
6469 return ( fxNow = jQuery.now() );
6473 function genFx( type, includeWidth ) {
6476 attrs = { height: type };
6480 includeWidth = includeWidth ? 1 : 0;
6481 for ( ; i < 4 ; i += 2 - includeWidth ) {
6482 which = cssExpand[ i ];
6483 attrs[
"margin" + which ] = attrs[
"padding" + which ] = type;
6486 if ( includeWidth ) {
6487 attrs.opacity = attrs.width = type;
6493 function createTween( value, prop, animation ) {
6495 collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[
"*" ] ),
6497 length = collection.length;
6498 for ( ; index < length; index++ ) {
6499 if ( ( tween = collection[ index ].
call( animation, prop, value ) ) ) {
6507 function defaultPrefilter( elem, props, opts ) {
6509 var prop, value,
toggle, tween, hooks, oldfire, display, checkDisplay,
6513 hidden = elem.nodeType && isHidden( elem ),
6514 dataShow = dataPriv.get( elem,
"fxshow" );
6517 if ( !opts.queue ) {
6518 hooks = jQuery._queueHooks( elem,
"fx" );
6519 if ( hooks.unqueued == null ) {
6521 oldfire = hooks.empty.fire;
6522 hooks.empty.fire =
function() {
6523 if ( !hooks.unqueued ) {
6530 anim.always(
function() {
6533 anim.always(
function() {
6535 if ( !jQuery.queue( elem,
"fx" ).length ) {
6543 if ( elem.nodeType === 1 && (
"height" in props ||
"width" in props ) ) {
6549 opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
6553 display = jQuery.css( elem,
"display" );
6556 checkDisplay = display ===
"none" ?
6557 dataPriv.get( elem,
"olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
6559 if ( checkDisplay ===
"inline" && jQuery.css( elem,
"float" ) ===
"none" ) {
6560 style.display =
"inline-block";
6564 if ( opts.overflow ) {
6565 style.overflow =
"hidden";
6566 anim.always(
function() {
6567 style.overflow = opts.overflow[ 0 ];
6568 style.overflowX = opts.overflow[ 1 ];
6569 style.overflowY = opts.overflow[ 2 ];
6574 for ( prop in props ) {
6575 value = props[ prop ];
6576 if ( rfxtypes.exec( value ) ) {
6577 delete props[ prop ];
6578 toggle = toggle || value ===
"toggle";
6579 if ( value === ( hidden ?
"hide" :
"show" ) ) {
6583 if ( value ===
"show" && dataShow && dataShow[ prop ] !==
undefined ) {
6589 orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
6597 if ( !jQuery.isEmptyObject( orig ) ) {
6599 if (
"hidden" in dataShow ) {
6600 hidden = dataShow.hidden;
6603 dataShow = dataPriv.access( elem,
"fxshow", {} );
6608 dataShow.hidden = !hidden;
6611 jQuery( elem ).show();
6613 anim.done(
function() {
6614 jQuery( elem ).hide();
6617 anim.done(
function() {
6620 dataPriv.remove( elem,
"fxshow" );
6621 for ( prop in orig ) {
6622 jQuery.style( elem, prop, orig[ prop ] );
6625 for ( prop in orig ) {
6626 tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
6628 if ( !( prop in dataShow ) ) {
6629 dataShow[ prop ] = tween.start;
6631 tween.end = tween.start;
6632 tween.start = prop ===
"width" || prop ===
"height" ? 1 : 0;
6638 }
else if ( ( display ===
"none" ? defaultDisplay( elem.nodeName ) : display ) ===
"inline" ) {
6639 style.display = display;
6643 function propFilter( props, specialEasing ) {
6644 var index, name, easing, value, hooks;
6647 for ( index in props ) {
6648 name = jQuery.camelCase( index );
6649 easing = specialEasing[ name ];
6650 value = props[ index ];
6651 if ( jQuery.isArray( value ) ) {
6652 easing = value[ 1 ];
6653 value = props[ index ] = value[ 0 ];
6656 if ( index !== name ) {
6657 props[ name ] = value;
6658 delete props[ index ];
6661 hooks = jQuery.cssHooks[ name ];
6662 if ( hooks &&
"expand" in hooks ) {
6663 value = hooks.expand( value );
6664 delete props[ name ];
6668 for ( index in value ) {
6669 if ( !( index in props ) ) {
6670 props[ index ] = value[ index ];
6671 specialEasing[ index ] = easing;
6675 specialEasing[ name ] = easing;
6680 function Animation( elem, properties, options ) {
6684 length = Animation.prefilters.length,
6685 deferred = jQuery.Deferred().always(
function() {
6694 var currentTime = fxNow || createFxNow(),
6695 remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
6699 temp = remaining / animation.duration || 0,
6702 length = animation.tweens.length;
6704 for ( ; index < length ; index++ ) {
6705 animation.tweens[ index ].run( percent );
6708 deferred.notifyWith( elem, [ animation, percent, remaining ] );
6710 if ( percent < 1 && length ) {
6713 deferred.resolveWith( elem, [ animation ] );
6717 animation = deferred.promise( {
6719 props: jQuery.extend( {}, properties ),
6720 opts: jQuery.extend(
true, {
6722 easing: jQuery.easing._default
6724 originalProperties: properties,
6725 originalOptions: options,
6726 startTime: fxNow || createFxNow(),
6727 duration: options.duration,
6729 createTween:
function( prop, end ) {
6730 var tween = jQuery.Tween( elem, animation.opts, prop, end,
6731 animation.opts.specialEasing[ prop ] || animation.opts.easing );
6732 animation.tweens.push( tween );
6735 stop:
function( gotoEnd ) {
6740 length = gotoEnd ? animation.tweens.length : 0;
6745 for ( ; index < length ; index++ ) {
6746 animation.tweens[ index ].run( 1 );
6751 deferred.notifyWith( elem, [ animation, 1, 0 ] );
6752 deferred.resolveWith( elem, [ animation, gotoEnd ] );
6754 deferred.rejectWith( elem, [ animation, gotoEnd ] );
6759 props = animation.props;
6761 propFilter( props, animation.opts.specialEasing );
6763 for ( ; index < length ; index++ ) {
6764 result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
6766 if ( jQuery.isFunction( result.stop ) ) {
6767 jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
6768 jQuery.proxy( result.stop, result );
6774 jQuery.map( props, createTween, animation );
6776 if ( jQuery.isFunction( animation.opts.start ) ) {
6777 animation.opts.start.call( elem, animation );
6781 jQuery.extend( tick, {
6784 queue: animation.opts.queue
6789 return animation.progress( animation.opts.progress )
6790 .done( animation.opts.done, animation.opts.complete )
6791 .fail( animation.opts.fail )
6792 .always( animation.opts.always );
6795 jQuery.Animation = jQuery.extend( Animation, {
6797 "*": [
function( prop, value ) {
6798 var tween = this.createTween( prop, value );
6799 adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
6804 tweener:
function( props, callback ) {
6805 if ( jQuery.isFunction( props ) ) {
6809 props = props.match( rnotwhite );
6814 length = props.length;
6816 for ( ; index < length ; index++ ) {
6817 prop = props[ index ];
6818 Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
6819 Animation.tweeners[ prop ].unshift( callback );
6823 prefilters: [ defaultPrefilter ],
6825 prefilter:
function( callback, prepend ) {
6827 Animation.prefilters.unshift( callback );
6829 Animation.prefilters.push( callback );
6834 jQuery.speed =
function( speed, easing,
fn ) {
6835 var opt = speed && typeof speed ===
"object" ? jQuery.extend( {}, speed ) : {
6836 complete:
fn || !
fn && easing ||
6837 jQuery.isFunction( speed ) && speed,
6839 easing:
fn && easing || easing && !jQuery.isFunction( easing ) && easing
6842 opt.duration = jQuery.fx.off ? 0 : typeof opt.duration ===
"number" ?
6843 opt.duration : opt.duration in jQuery.fx.speeds ?
6844 jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
6847 if ( opt.queue == null || opt.queue ===
true ) {
6852 opt.old = opt.complete;
6854 opt.complete =
function() {
6855 if ( jQuery.isFunction( opt.old ) ) {
6856 opt.old.call(
this );
6860 jQuery.dequeue(
this, opt.queue );
6868 fadeTo:
function( speed, to, easing, callback ) {
6871 return this.filter( isHidden ).css(
"opacity", 0 ).show()
6874 .end().animate( { opacity: to }, speed, easing, callback );
6876 animate:
function( prop, speed, easing, callback ) {
6877 var empty = jQuery.isEmptyObject( prop ),
6878 optall = jQuery.speed( speed, easing, callback ),
6879 doAnimation =
function() {
6882 var anim = Animation(
this, jQuery.extend( {}, prop ), optall );
6885 if ( empty || dataPriv.get(
this,
"finish" ) ) {
6889 doAnimation.finish = doAnimation;
6891 return empty || optall.queue ===
false ?
6892 this.
each( doAnimation ) :
6893 this.queue( optall.queue, doAnimation );
6895 stop:
function( type, clearQueue, gotoEnd ) {
6896 var stopQueue =
function( hooks ) {
6897 var stop = hooks.stop;
6902 if ( typeof type !==
"string" ) {
6903 gotoEnd = clearQueue;
6907 if ( clearQueue && type !==
false ) {
6908 this.queue( type ||
"fx", [] );
6911 return this.
each(
function() {
6913 index = type != null && type +
"queueHooks",
6914 timers = jQuery.timers,
6915 data = dataPriv.get(
this );
6918 if ( data[ index ] && data[ index ].stop ) {
6919 stopQueue( data[ index ] );
6922 for ( index in data ) {
6923 if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
6924 stopQueue( data[ index ] );
6929 for ( index = timers.length; index--; ) {
6930 if ( timers[ index ].elem ===
this &&
6931 ( type == null || timers[ index ].queue === type ) ) {
6933 timers[ index ].anim.stop( gotoEnd );
6935 timers.splice( index, 1 );
6942 if ( dequeue || !gotoEnd ) {
6943 jQuery.dequeue(
this, type );
6947 finish:
function( type ) {
6948 if ( type !==
false ) {
6949 type = type ||
"fx";
6951 return this.
each(
function() {
6953 data = dataPriv.get(
this ),
6954 queue = data[ type +
"queue" ],
6955 hooks = data[ type +
"queueHooks" ],
6956 timers = jQuery.timers,
6957 length = queue ? queue.length : 0;
6963 jQuery.queue(
this, type, [] );
6965 if ( hooks && hooks.stop ) {
6966 hooks.stop.call(
this,
true );
6970 for ( index = timers.length; index--; ) {
6971 if ( timers[ index ].elem ===
this && timers[ index ].queue === type ) {
6972 timers[ index ].anim.stop(
true );
6973 timers.splice( index, 1 );
6978 for ( index = 0; index < length; index++ ) {
6979 if ( queue[ index ] && queue[ index ].finish ) {
6980 queue[ index ].finish.call(
this );
6990 jQuery.each( [
"toggle",
"show",
"hide" ],
function( i, name ) {
6991 var cssFn = jQuery.fn[ name ];
6992 jQuery.fn[ name ] =
function( speed, easing, callback ) {
6993 return speed == null || typeof speed ===
"boolean" ?
6994 cssFn.apply(
this, arguments ) :
6995 this.animate( genFx( name,
true ), speed, easing, callback );
7001 slideDown: genFx(
"show" ),
7002 slideUp: genFx(
"hide" ),
7003 slideToggle: genFx(
"toggle" ),
7004 fadeIn: { opacity:
"show" },
7005 fadeOut: { opacity:
"hide" },
7006 fadeToggle: { opacity:
"toggle" }
7007 },
function( name, props ) {
7008 jQuery.fn[ name ] =
function( speed, easing, callback ) {
7009 return this.animate( props, speed, easing, callback );
7014 jQuery.fx.tick =
function() {
7017 timers = jQuery.timers;
7019 fxNow = jQuery.now();
7021 for ( ; i < timers.length; i++ ) {
7022 timer = timers[ i ];
7025 if ( !timer() && timers[ i ] === timer ) {
7026 timers.splice( i--, 1 );
7030 if ( !timers.length ) {
7036 jQuery.fx.timer =
function( timer ) {
7037 jQuery.timers.push( timer );
7041 jQuery.timers.pop();
7045 jQuery.fx.interval = 13;
7046 jQuery.fx.start =
function() {
7048 timerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval );
7052 jQuery.fx.stop =
function() {
7053 window.clearInterval( timerId );
7058 jQuery.fx.speeds = {
7069 jQuery.fn.delay =
function( time, type ) {
7070 time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
7071 type = type ||
"fx";
7073 return this.queue( type,
function( next, hooks ) {
7074 var timeout = window.setTimeout( next, time );
7075 hooks.stop =
function() {
7076 window.clearTimeout( timeout );
7083 var input = document.createElement(
"input" ),
7084 select = document.createElement(
"select" ),
7085 opt = select.appendChild( document.createElement(
"option" ) );
7087 input.type =
"checkbox";
7091 support.checkOn = input.value !==
"";
7095 support.optSelected = opt.selected;
7099 select.disabled =
true;
7100 support.optDisabled = !opt.disabled;
7104 input = document.createElement(
"input" );
7106 input.type =
"radio";
7107 support.radioValue = input.value ===
"t";
7112 attrHandle = jQuery.expr.attrHandle;
7115 attr:
function( name, value ) {
7116 return access(
this, jQuery.attr, name, value, arguments.length > 1 );
7119 removeAttr:
function( name ) {
7120 return this.
each(
function() {
7121 jQuery.removeAttr(
this, name );
7127 attr:
function( elem, name, value ) {
7129 nType = elem.nodeType;
7132 if ( nType === 3 || nType === 8 || nType === 2 ) {
7137 if ( typeof elem.getAttribute ===
"undefined" ) {
7138 return jQuery.prop( elem, name, value );
7143 if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7144 name = name.toLowerCase();
7145 hooks = jQuery.attrHooks[ name ] ||
7146 ( jQuery.expr.match.bool.test( name ) ? boolHook :
undefined );
7150 if ( value === null ) {
7151 jQuery.removeAttr( elem, name );
7155 if ( hooks &&
"set" in hooks &&
7156 ( ret = hooks.set( elem, value, name ) ) !==
undefined ) {
7160 elem.setAttribute( name, value +
"" );
7164 if ( hooks &&
"get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7168 ret = jQuery.find.attr( elem, name );
7176 set:
function( elem, value ) {
7177 if ( !support.radioValue && value ===
"radio" &&
7178 jQuery.nodeName( elem,
"input" ) ) {
7179 var val = elem.value;
7180 elem.setAttribute(
"type", value );
7190 removeAttr:
function( elem, value ) {
7193 attrNames = value && value.match( rnotwhite );
7195 if ( attrNames && elem.nodeType === 1 ) {
7196 while ( ( name = attrNames[ i++ ] ) ) {
7197 propName = jQuery.propFix[ name ] || name;
7200 if ( jQuery.expr.match.bool.test( name ) ) {
7203 elem[ propName ] =
false;
7206 elem.removeAttribute( name );
7214 set:
function( elem, value, name ) {
7215 if ( value ===
false ) {
7218 jQuery.removeAttr( elem, name );
7220 elem.setAttribute( name, name );
7225 jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ),
function( i, name ) {
7226 var getter = attrHandle[ name ] || jQuery.find.attr;
7228 attrHandle[ name ] =
function( elem, name, isXML ) {
7233 handle = attrHandle[ name ];
7234 attrHandle[ name ] = ret;
7235 ret = getter( elem, name, isXML ) != null ?
7236 name.toLowerCase() :
7238 attrHandle[ name ] = handle;
7247 var rfocusable = /^(?:input|select|textarea|
button)$/i,
7248 rclickable = /^(?:
a|area)$/i;
7251 prop:
function( name, value ) {
7252 return access(
this, jQuery.prop, name, value, arguments.length > 1 );
7255 removeProp:
function( name ) {
7256 return this.
each(
function() {
7257 delete this[ jQuery.propFix[ name ] || name ];
7263 prop:
function( elem, name, value ) {
7265 nType = elem.nodeType;
7268 if ( nType === 3 || nType === 8 || nType === 2 ) {
7272 if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7275 name = jQuery.propFix[ name ] || name;
7276 hooks = jQuery.propHooks[ name ];
7280 if ( hooks &&
"set" in hooks &&
7281 ( ret = hooks.set( elem, value, name ) ) !==
undefined ) {
7285 return ( elem[ name ] = value );
7288 if ( hooks &&
"get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7292 return elem[ name ];
7297 get:
function( elem ) {
7303 var tabindex = jQuery.find.attr( elem,
"tabindex" );
7306 parseInt( tabindex, 10 ) :
7307 rfocusable.test( elem.nodeName ) ||
7308 rclickable.test( elem.nodeName ) && elem.href ?
7317 "class":
"className" 7327 if ( !support.optSelected ) {
7328 jQuery.propHooks.selected = {
7329 get:
function( elem ) {
7330 var parent = elem.parentNode;
7331 if ( parent && parent.parentNode ) {
7332 parent.parentNode.selectedIndex;
7336 set:
function( elem ) {
7337 var parent = elem.parentNode;
7339 parent.selectedIndex;
7341 if ( parent.parentNode ) {
7342 parent.parentNode.selectedIndex;
7361 jQuery.propFix[ this.toLowerCase() ] =
this;
7367 var rclass = /[\t\r\n\f]/g;
7369 function getClass( elem ) {
7370 return elem.getAttribute && elem.getAttribute(
"class" ) ||
"";
7374 addClass:
function( value ) {
7375 var classes, elem, cur, curValue, clazz, j, finalValue,
7378 if ( jQuery.isFunction( value ) ) {
7379 return this.
each(
function( j ) {
7380 jQuery(
this ).addClass( value.call(
this, j, getClass(
this ) ) );
7384 if ( typeof value ===
"string" && value ) {
7385 classes = value.match( rnotwhite ) || [];
7387 while ( ( elem =
this[ i++ ] ) ) {
7388 curValue = getClass( elem );
7389 cur = elem.nodeType === 1 &&
7390 (
" " + curValue +
" " ).replace( rclass,
" " );
7394 while ( ( clazz = classes[ j++ ] ) ) {
7395 if ( cur.indexOf(
" " + clazz +
" " ) < 0 ) {
7401 finalValue = jQuery.trim( cur );
7402 if ( curValue !== finalValue ) {
7403 elem.setAttribute(
"class", finalValue );
7412 removeClass:
function( value ) {
7413 var classes, elem, cur, curValue, clazz, j, finalValue,
7416 if ( jQuery.isFunction( value ) ) {
7417 return this.
each(
function( j ) {
7418 jQuery(
this ).removeClass( value.call(
this, j, getClass(
this ) ) );
7422 if ( !arguments.length ) {
7423 return this.attr(
"class",
"" );
7426 if ( typeof value ===
"string" && value ) {
7427 classes = value.match( rnotwhite ) || [];
7429 while ( ( elem =
this[ i++ ] ) ) {
7430 curValue = getClass( elem );
7433 cur = elem.nodeType === 1 &&
7434 (
" " + curValue +
" " ).replace( rclass,
" " );
7438 while ( ( clazz = classes[ j++ ] ) ) {
7441 while ( cur.indexOf(
" " + clazz +
" " ) > -1 ) {
7442 cur = cur.replace(
" " + clazz +
" ",
" " );
7447 finalValue = jQuery.trim( cur );
7448 if ( curValue !== finalValue ) {
7449 elem.setAttribute(
"class", finalValue );
7458 toggleClass:
function( value, stateVal ) {
7459 var type = typeof value;
7461 if ( typeof stateVal ===
"boolean" && type ===
"string" ) {
7462 return stateVal ? this.addClass( value ) : this.removeClass( value );
7465 if ( jQuery.isFunction( value ) ) {
7466 return this.
each(
function( i ) {
7467 jQuery(
this ).toggleClass(
7468 value.call(
this, i, getClass(
this ), stateVal ),
7474 return this.
each(
function() {
7475 var className, i,
self, classNames;
7477 if ( type ===
"string" ) {
7481 self = jQuery(
this );
7482 classNames = value.match( rnotwhite ) || [];
7484 while ( ( className = classNames[ i++ ] ) ) {
7487 if (
self.hasClass( className ) ) {
7488 self.removeClass( className );
7490 self.addClass( className );
7495 }
else if ( value ===
undefined || type ===
"boolean" ) {
7496 className = getClass(
this );
7500 dataPriv.set(
this,
"__className__", className );
7507 if ( this.setAttribute ) {
7508 this.setAttribute(
"class",
7509 className || value ===
false ?
7511 dataPriv.get(
this,
"__className__" ) ||
"" 7518 hasClass:
function( selector ) {
7519 var className, elem,
7522 className =
" " + selector +
" ";
7523 while ( ( elem =
this[ i++ ] ) ) {
7524 if ( elem.nodeType === 1 &&
7525 (
" " + getClass( elem ) +
" " ).replace( rclass,
" " )
7526 .indexOf( className ) > -1
7539 var rreturn = /\r/g,
7540 rspaces = /[\x20\t\r\n\f]+/g;
7543 val:
function( value ) {
7544 var hooks, ret, isFunction,
7547 if ( !arguments.length ) {
7549 hooks = jQuery.valHooks[ elem.type ] ||
7550 jQuery.valHooks[ elem.nodeName.toLowerCase() ];
7554 ( ret = hooks.get( elem,
"value" ) ) !==
undefined 7561 return typeof ret ===
"string" ?
7564 ret.replace( rreturn,
"" ) :
7567 ret == null ?
"" : ret;
7573 isFunction = jQuery.isFunction( value );
7575 return this.
each(
function( i ) {
7578 if ( this.nodeType !== 1 ) {
7583 val = value.call(
this, i, jQuery(
this ).val() );
7589 if ( val == null ) {
7592 }
else if ( typeof val ===
"number" ) {
7595 }
else if ( jQuery.isArray( val ) ) {
7596 val = jQuery.map( val,
function( value ) {
7597 return value == null ?
"" : value +
"";
7601 hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
7604 if ( !hooks || !(
"set" in hooks ) || hooks.set(
this, val,
"value" ) ===
undefined ) {
7614 get:
function( elem ) {
7616 var val = jQuery.find.attr( elem,
"value" );
7617 return val != null ?
7624 jQuery.trim( jQuery.text( elem ) ).replace( rspaces,
" " );
7628 get:
function( elem ) {
7630 options = elem.options,
7631 index = elem.selectedIndex,
7632 one = elem.type ===
"select-one" || index < 0,
7633 values = one ? null : [],
7634 max = one ? index + 1 : options.length,
7640 for ( ; i < max; i++ ) {
7641 option = options[ i ];
7644 if ( ( option.selected || i === index ) &&
7647 ( support.optDisabled ?
7648 !option.disabled : option.getAttribute(
"disabled" ) === null ) &&
7649 ( !option.parentNode.disabled ||
7650 !jQuery.nodeName( option.parentNode,
"optgroup" ) ) ) {
7653 value = jQuery( option ).val();
7661 values.push( value );
7668 set:
function( elem, value ) {
7669 var optionSet, option,
7670 options = elem.options,
7671 values = jQuery.makeArray( value ),
7675 option = options[ i ];
7676 if ( option.selected =
7677 jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
7685 elem.selectedIndex = -1;
7694 jQuery.each( [
"radio",
"checkbox" ],
function() {
7695 jQuery.valHooks[ this ] = {
7696 set:
function( elem, value ) {
7697 if ( jQuery.isArray( value ) ) {
7698 return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
7702 if ( !support.checkOn ) {
7703 jQuery.valHooks[ this ].get =
function( elem ) {
7704 return elem.getAttribute(
"value" ) === null ?
"on" : elem.value;
7715 var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;
7717 jQuery.extend( jQuery.event, {
7719 trigger: function( event, data, elem, onlyHandlers ) {
7721 var i, cur, tmp, bubbleType, ontype, handle, special,
7722 eventPath = [ elem || document ],
7723 type = hasOwn.call( event,
"type" ) ? event.type : event,
7724 namespaces = hasOwn.call( event,
"namespace" ) ? event.namespace.split(
"." ) : [];
7726 cur = tmp = elem = elem || document;
7729 if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
7734 if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
7738 if ( type.indexOf(
"." ) > -1 ) {
7741 namespaces = type.split(
"." );
7742 type = namespaces.shift();
7745 ontype = type.indexOf(
":" ) < 0 &&
"on" + type;
7748 event = event[ jQuery.expando ] ?
7750 new jQuery.Event( type, typeof event ===
"object" && event );
7753 event.isTrigger = onlyHandlers ? 2 : 3;
7754 event.namespace = namespaces.join(
"." );
7755 event.rnamespace = event.namespace ?
7756 new RegExp(
"(^|\\.)" + namespaces.join(
"\\.(?:.*\\.|)" ) +
"(\\.|$)" ) :
7760 event.result = undefined;
7761 if ( !event.target ) {
7762 event.target = elem;
7766 data = data == null ?
7768 jQuery.makeArray( data, [ event ] );
7771 special = jQuery.event.special[ type ] || {};
7772 if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
7778 if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
7780 bubbleType = special.delegateType || type;
7781 if ( !rfocusMorph.test( bubbleType + type ) ) {
7782 cur = cur.parentNode;
7784 for ( ; cur; cur = cur.parentNode ) {
7785 eventPath.push( cur );
7790 if ( tmp === ( elem.ownerDocument || document ) ) {
7791 eventPath.push( tmp.defaultView || tmp.parentWindow || window );
7797 while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
7799 event.type = i > 1 ?
7801 special.bindType || type;
7804 handle = ( dataPriv.get( cur,
"events" ) || {} )[ event.type ] &&
7805 dataPriv.get( cur,
"handle" );
7807 handle.apply( cur, data );
7811 handle = ontype && cur[ ontype ];
7812 if ( handle && handle.apply && acceptData( cur ) ) {
7813 event.result = handle.apply( cur, data );
7814 if ( event.result === false ) {
7815 event.preventDefault();
7822 if ( !onlyHandlers && !event.isDefaultPrevented() ) {
7824 if ( ( !special._default ||
7825 special._default.apply( eventPath.pop(), data ) === false ) &&
7826 acceptData( elem ) ) {
7830 if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
7833 tmp = elem[ ontype ];
7836 elem[ ontype ] = null;
7840 jQuery.event.triggered = type;
7842 jQuery.event.triggered = undefined;
7845 elem[ ontype ] = tmp;
7851 return event.result;
7856 simulate:
function( type, elem, event ) {
7857 var e = jQuery.extend(
7866 jQuery.event.trigger(
e, null, elem );
7873 trigger:
function( type, data ) {
7874 return this.
each(
function() {
7875 jQuery.event.trigger( type, data,
this );
7878 triggerHandler:
function( type, data ) {
7879 var elem =
this[ 0 ];
7881 return jQuery.event.trigger( type, data, elem,
true );
7887 jQuery.each( (
"blur focus focusin focusout load resize scroll unload click dblclick " +
7888 "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
7889 "change select submit keydown keypress keyup error contextmenu" ).split(
" " ),
7890 function( i, name ) {
7893 jQuery.fn[ name ] =
function( data,
fn ) {
7894 return arguments.length > 0 ?
7895 this.on( name, null, data,
fn ) :
7896 this.trigger( name );
7901 hover:
function( fnOver, fnOut ) {
7902 return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
7909 support.focusin =
"onfocusin" in window;
7920 if ( !support.focusin ) {
7921 jQuery.each( { focus:
"focusin", blur:
"focusout" },
function( orig, fix ) {
7924 var handler =
function( event ) {
7925 jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
7928 jQuery.event.special[ fix ] = {
7930 var doc = this.ownerDocument ||
this,
7931 attaches = dataPriv.access( doc, fix );
7934 doc.addEventListener( orig, handler,
true );
7936 dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
7938 teardown:
function() {
7939 var doc = this.ownerDocument ||
this,
7940 attaches = dataPriv.access( doc, fix ) - 1;
7943 doc.removeEventListener( orig, handler,
true );
7944 dataPriv.remove( doc, fix );
7947 dataPriv.access( doc, fix, attaches );
7953 var location = window.location;
7955 var nonce = jQuery.now();
7957 var rquery = ( /\?/ );
7963 jQuery.parseJSON =
function( data ) {
7964 return JSON.parse( data +
"" );
7969 jQuery.parseXML =
function( data ) {
7971 if ( !data || typeof data !==
"string" ) {
7977 xml = (
new window.DOMParser() ).parseFromString( data,
"text/xml" );
7982 if ( !xml || xml.getElementsByTagName(
"parsererror" ).length ) {
7983 jQuery.error(
"Invalid XML: " + data );
7991 rts = /([?&])_=[^&]*/,
7992 rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
7995 rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
7996 rnoContent = /^(?:GET|HEAD)$/,
8018 allTypes =
"*/".concat(
"*" ),
8021 originAnchor = document.createElement(
"a" );
8022 originAnchor.href = location.href;
8025 function addToPrefiltersOrTransports( structure ) {
8028 return function( dataTypeExpression, func ) {
8030 if ( typeof dataTypeExpression !==
"string" ) {
8031 func = dataTypeExpression;
8032 dataTypeExpression =
"*";
8037 dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
8039 if ( jQuery.isFunction( func ) ) {
8042 while ( ( dataType = dataTypes[ i++ ] ) ) {
8045 if ( dataType[ 0 ] ===
"+" ) {
8046 dataType = dataType.slice( 1 ) ||
"*";
8047 ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
8051 ( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
8059 function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
8062 seekingTransport = ( structure === transports );
8064 function inspect( dataType ) {
8066 inspected[ dataType ] =
true;
8067 jQuery.each( structure[ dataType ] || [],
function( _, prefilterOrFactory ) {
8068 var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
8069 if ( typeof dataTypeOrTransport ===
"string" &&
8070 !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
8072 options.dataTypes.unshift( dataTypeOrTransport );
8073 inspect( dataTypeOrTransport );
8075 }
else if ( seekingTransport ) {
8076 return !( selected = dataTypeOrTransport );
8082 return inspect( options.dataTypes[ 0 ] ) || !inspected[
"*" ] && inspect(
"*" );
8088 function ajaxExtend( target, src ) {
8090 flatOptions = jQuery.ajaxSettings.flatOptions || {};
8092 for ( key in src ) {
8094 ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
8098 jQuery.extend(
true, target, deep );
8108 function ajaxHandleResponses(
s, jqXHR, responses ) {
8110 var ct, type, finalDataType, firstDataType,
8111 contents =
s.contents,
8112 dataTypes =
s.dataTypes;
8115 while ( dataTypes[ 0 ] ===
"*" ) {
8118 ct =
s.mimeType || jqXHR.getResponseHeader(
"Content-Type" );
8124 for ( type in contents ) {
8125 if ( contents[ type ] && contents[ type ].test( ct ) ) {
8126 dataTypes.unshift( type );
8133 if ( dataTypes[ 0 ] in responses ) {
8134 finalDataType = dataTypes[ 0 ];
8138 for ( type in responses ) {
8139 if ( !dataTypes[ 0 ] ||
s.converters[ type +
" " + dataTypes[ 0 ] ] ) {
8140 finalDataType = type;
8143 if ( !firstDataType ) {
8144 firstDataType = type;
8149 finalDataType = finalDataType || firstDataType;
8155 if ( finalDataType ) {
8156 if ( finalDataType !== dataTypes[ 0 ] ) {
8157 dataTypes.unshift( finalDataType );
8159 return responses[ finalDataType ];
8166 function ajaxConvert(
s, response, jqXHR, isSuccess ) {
8167 var conv2, current, conv, tmp, prev,
8171 dataTypes =
s.dataTypes.slice();
8174 if ( dataTypes[ 1 ] ) {
8175 for ( conv in
s.converters ) {
8176 converters[ conv.toLowerCase() ] =
s.converters[ conv ];
8180 current = dataTypes.shift();
8185 if (
s.responseFields[ current ] ) {
8186 jqXHR[
s.responseFields[ current ] ] = response;
8190 if ( !prev && isSuccess &&
s.dataFilter ) {
8191 response =
s.dataFilter( response,
s.dataType );
8195 current = dataTypes.shift();
8200 if ( current ===
"*" ) {
8205 }
else if ( prev !==
"*" && prev !== current ) {
8208 conv = converters[ prev +
" " + current ] || converters[
"* " + current ];
8212 for ( conv2 in converters ) {
8215 tmp = conv2.split(
" " );
8216 if ( tmp[ 1 ] === current ) {
8219 conv = converters[ prev +
" " + tmp[ 0 ] ] ||
8220 converters[
"* " + tmp[ 0 ] ];
8224 if ( conv ===
true ) {
8225 conv = converters[ conv2 ];
8228 }
else if ( converters[ conv2 ] !==
true ) {
8230 dataTypes.unshift( tmp[ 1 ] );
8239 if ( conv !==
true ) {
8242 if ( conv &&
s.throws ) {
8243 response = conv( response );
8246 response = conv( response );
8249 state:
"parsererror",
8250 error: conv ?
e :
"No conversion from " + prev +
" to " + current
8259 return { state:
"success", data: response };
8274 isLocal: rlocalProtocol.test( location.protocol ),
8278 contentType:
"application/x-www-form-urlencoded; charset=UTF-8",
8295 xml:
"application/xml, text/xml",
8296 json:
"application/json, text/javascript" 8307 text:
"responseText",
8308 json:
"responseJSON" 8322 "text json": jQuery.parseJSON,
8325 "text xml": jQuery.parseXML
8341 ajaxSetup:
function( target, settings ) {
8345 ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
8348 ajaxExtend( jQuery.ajaxSettings, target );
8351 ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
8352 ajaxTransport: addToPrefiltersOrTransports( transports ),
8355 ajax:
function( url, options ) {
8358 if ( typeof url ===
"object" ) {
8364 options = options || {};
8372 responseHeadersString,
8388 s = jQuery.ajaxSetup( {}, options ),
8391 callbackContext = s.context || s,
8394 globalEventContext = s.context &&
8395 ( callbackContext.nodeType || callbackContext.jquery ) ?
8396 jQuery( callbackContext ) :
8400 deferred = jQuery.Deferred(),
8401 completeDeferred = jQuery.Callbacks(
"once memory" ),
8404 statusCode = s.statusCode || {},
8407 requestHeaders = {},
8408 requestHeadersNames = {},
8414 strAbort =
"canceled",
8421 getResponseHeader:
function( key ) {
8423 if ( state === 2 ) {
8424 if ( !responseHeaders ) {
8425 responseHeaders = {};
8426 while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
8427 responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
8430 match = responseHeaders[ key.toLowerCase() ];
8432 return match == null ? null : match;
8436 getAllResponseHeaders:
function() {
8437 return state === 2 ? responseHeadersString : null;
8441 setRequestHeader:
function( name, value ) {
8442 var lname = name.toLowerCase();
8444 name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
8445 requestHeaders[ name ] = value;
8451 overrideMimeType:
function( type ) {
8459 statusCode:
function( map ) {
8463 for ( code in map ) {
8466 statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
8471 jqXHR.always( map[ jqXHR.status ] );
8478 abort:
function( statusText ) {
8479 var finalText = statusText || strAbort;
8481 transport.abort( finalText );
8483 done( 0, finalText );
8489 deferred.promise( jqXHR ).complete = completeDeferred.add;
8490 jqXHR.success = jqXHR.done;
8491 jqXHR.error = jqXHR.fail;
8497 s.url = ( ( url || s.url || location.href ) +
"" ).replace( rhash,
"" )
8498 .replace( rprotocol, location.protocol +
"//" );
8501 s.type = options.method || options.type || s.method || s.type;
8504 s.dataTypes = jQuery.trim( s.dataType ||
"*" ).toLowerCase().match( rnotwhite ) || [
"" ];
8507 if ( s.crossDomain == null ) {
8508 urlAnchor = document.createElement(
"a" );
8513 urlAnchor.href = s.url;
8517 urlAnchor.href = urlAnchor.href;
8518 s.crossDomain = originAnchor.protocol +
"//" + originAnchor.host !==
8519 urlAnchor.protocol +
"//" + urlAnchor.host;
8524 s.crossDomain =
true;
8529 if ( s.data && s.processData && typeof s.data !==
"string" ) {
8530 s.data = jQuery.param( s.data, s.traditional );
8534 inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
8537 if ( state === 2 ) {
8543 fireGlobals = jQuery.event && s.global;
8546 if ( fireGlobals && jQuery.active++ === 0 ) {
8547 jQuery.event.trigger(
"ajaxStart" );
8551 s.type = s.type.toUpperCase();
8554 s.hasContent = !rnoContent.test( s.type );
8561 if ( !s.hasContent ) {
8565 cacheURL = ( s.url += ( rquery.test( cacheURL ) ?
"&" :
"?" ) + s.data );
8572 if ( s.cache ===
false ) {
8573 s.url = rts.test( cacheURL ) ?
8576 cacheURL.replace( rts,
"$1_=" + nonce++ ) :
8579 cacheURL + ( rquery.test( cacheURL ) ?
"&" :
"?" ) +
"_=" + nonce++;
8584 if ( s.ifModified ) {
8585 if ( jQuery.lastModified[ cacheURL ] ) {
8586 jqXHR.setRequestHeader(
"If-Modified-Since", jQuery.lastModified[ cacheURL ] );
8588 if ( jQuery.etag[ cacheURL ] ) {
8589 jqXHR.setRequestHeader(
"If-None-Match", jQuery.etag[ cacheURL ] );
8594 if ( s.data && s.hasContent && s.contentType !==
false || options.contentType ) {
8595 jqXHR.setRequestHeader(
"Content-Type", s.contentType );
8599 jqXHR.setRequestHeader(
8601 s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
8602 s.accepts[ s.dataTypes[ 0 ] ] +
8603 ( s.dataTypes[ 0 ] !==
"*" ?
", " + allTypes +
"; q=0.01" :
"" ) :
8608 for ( i in s.headers ) {
8609 jqXHR.setRequestHeader( i, s.headers[ i ] );
8613 if ( s.beforeSend &&
8614 ( s.beforeSend.call( callbackContext, jqXHR, s ) ===
false || state === 2 ) ) {
8617 return jqXHR.abort();
8624 for ( i in { success: 1, error: 1, complete: 1 } ) {
8625 jqXHR[ i ]( s[ i ] );
8629 transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
8633 done( -1,
"No Transport" );
8635 jqXHR.readyState = 1;
8638 if ( fireGlobals ) {
8639 globalEventContext.trigger(
"ajaxSend", [ jqXHR, s ] );
8643 if ( state === 2 ) {
8648 if ( s.async && s.timeout > 0 ) {
8649 timeoutTimer = window.setTimeout(
function() {
8650 jqXHR.abort(
"timeout" );
8656 transport.send( requestHeaders, done );
8671 function done( status, nativeStatusText, responses, headers ) {
8672 var isSuccess, success, error, response, modified,
8673 statusText = nativeStatusText;
8676 if ( state === 2 ) {
8684 if ( timeoutTimer ) {
8685 window.clearTimeout( timeoutTimer );
8693 responseHeadersString = headers ||
"";
8696 jqXHR.readyState = status > 0 ? 4 : 0;
8699 isSuccess = status >= 200 && status < 300 || status === 304;
8703 response = ajaxHandleResponses( s, jqXHR, responses );
8707 response = ajaxConvert( s, response, jqXHR, isSuccess );
8713 if ( s.ifModified ) {
8714 modified = jqXHR.getResponseHeader(
"Last-Modified" );
8716 jQuery.lastModified[ cacheURL ] = modified;
8718 modified = jqXHR.getResponseHeader(
"etag" );
8720 jQuery.etag[ cacheURL ] = modified;
8725 if ( status === 204 || s.type ===
"HEAD" ) {
8726 statusText =
"nocontent";
8729 }
else if ( status === 304 ) {
8730 statusText =
"notmodified";
8734 statusText = response.state;
8735 success = response.data;
8736 error = response.error;
8743 if ( status || !statusText ) {
8744 statusText =
"error";
8752 jqXHR.status = status;
8753 jqXHR.statusText = ( nativeStatusText || statusText ) +
"";
8757 deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
8759 deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
8763 jqXHR.statusCode( statusCode );
8766 if ( fireGlobals ) {
8767 globalEventContext.trigger( isSuccess ?
"ajaxSuccess" :
"ajaxError",
8768 [ jqXHR, s, isSuccess ? success : error ] );
8772 completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
8774 if ( fireGlobals ) {
8775 globalEventContext.trigger(
"ajaxComplete", [ jqXHR, s ] );
8778 if ( !( --jQuery.active ) ) {
8779 jQuery.event.trigger(
"ajaxStop" );
8787 getJSON:
function( url, data, callback ) {
8788 return jQuery.get( url, data, callback,
"json" );
8791 getScript:
function( url, callback ) {
8792 return jQuery.get( url,
undefined, callback,
"script" );
8796 jQuery.each( [
"get",
"post" ],
function( i, method ) {
8797 jQuery[ method ] =
function( url, data, callback, type ) {
8800 if ( jQuery.isFunction( data ) ) {
8801 type = type || callback;
8807 return jQuery.ajax( jQuery.extend( {
8813 }, jQuery.isPlainObject( url ) && url ) );
8818 jQuery._evalUrl =
function( url ) {
8819 return jQuery.ajax( {
8833 wrapAll:
function( html ) {
8836 if ( jQuery.isFunction( html ) ) {
8837 return this.
each(
function( i ) {
8838 jQuery(
this ).wrapAll( html.call(
this, i ) );
8845 wrap = jQuery( html,
this[ 0 ].ownerDocument ).eq( 0 ).clone(
true );
8847 if (
this[ 0 ].parentNode ) {
8848 wrap.insertBefore(
this[ 0 ] );
8851 wrap.map(
function() {
8854 while ( elem.firstElementChild ) {
8855 elem = elem.firstElementChild;
8865 wrapInner:
function( html ) {
8866 if ( jQuery.isFunction( html ) ) {
8867 return this.
each(
function( i ) {
8868 jQuery(
this ).wrapInner( html.call(
this, i ) );
8872 return this.
each(
function() {
8873 var
self = jQuery(
this ),
8874 contents =
self.contents();
8876 if ( contents.length ) {
8877 contents.wrapAll( html );
8880 self.append( html );
8885 wrap:
function( html ) {
8886 var isFunction = jQuery.isFunction( html );
8888 return this.
each(
function( i ) {
8889 jQuery(
this ).wrapAll( isFunction ? html.call(
this, i ) : html );
8893 unwrap:
function() {
8894 return this.parent().each(
function() {
8895 if ( !jQuery.nodeName(
this,
"body" ) ) {
8896 jQuery(
this ).replaceWith( this.childNodes );
8903 jQuery.expr.filters.hidden =
function( elem ) {
8904 return !jQuery.expr.filters.visible( elem );
8906 jQuery.expr.filters.visible =
function( elem ) {
8912 return elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;
8921 rsubmitterTypes = /^(?:submit|
button|image|reset|file)$/i,
8922 rsubmittable = /^(?:input|select|textarea|keygen)/i;
8924 function buildParams( prefix, obj, traditional, add ) {
8927 if ( jQuery.isArray( obj ) ) {
8930 jQuery.each( obj,
function( i, v ) {
8931 if ( traditional || rbracket.test( prefix ) ) {
8940 prefix +
"[" + ( typeof v ===
"object" && v != null ? i :
"" ) +
"]",
8948 }
else if ( !traditional && jQuery.type( obj ) ===
"object" ) {
8951 for ( name in obj ) {
8952 buildParams( prefix +
"[" + name +
"]", obj[ name ], traditional, add );
8964 jQuery.param =
function(
a, traditional ) {
8967 add =
function( key, value ) {
8970 value = jQuery.isFunction( value ) ? value() : ( value == null ?
"" : value );
8971 s[ s.length ] = encodeURIComponent( key ) +
"=" + encodeURIComponent( value );
8976 traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
8980 if ( jQuery.isArray(
a ) || (
a.jquery && !jQuery.isPlainObject(
a ) ) ) {
8983 jQuery.each(
a,
function() {
8984 add( this.name, this.value );
8991 for ( prefix in
a ) {
8992 buildParams( prefix, a[ prefix ], traditional, add );
8997 return s.join(
"&" ).replace( r20,
"+" );
9001 serialize:
function() {
9002 return jQuery.param( this.serializeArray() );
9004 serializeArray:
function() {
9005 return this.map(
function() {
9008 var elements = jQuery.prop(
this,
"elements" );
9009 return elements ? jQuery.makeArray( elements ) :
this;
9011 .filter(
function() {
9012 var type = this.type;
9015 return this.name && !jQuery(
this ).is(
":disabled" ) &&
9016 rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
9017 ( this.checked || !rcheckableType.test( type ) );
9019 .map(
function( i, elem ) {
9020 var val = jQuery(
this ).val();
9022 return val == null ?
9024 jQuery.isArray( val ) ?
9025 jQuery.map( val,
function( val ) {
9026 return { name: elem.name, value: val.replace( rCRLF,
"\r\n" ) };
9028 { name: elem.name, value: val.replace( rCRLF,
"\r\n" ) };
9034 jQuery.ajaxSettings.xhr =
function() {
9036 return new window.XMLHttpRequest();
9040 var xhrSuccessStatus = {
9049 xhrSupported = jQuery.ajaxSettings.xhr();
9051 support.cors = !!xhrSupported && (
"withCredentials" in xhrSupported );
9052 support.ajax = xhrSupported = !!xhrSupported;
9054 jQuery.ajaxTransport(
function( options ) {
9055 var callback, errorCallback;
9058 if ( support.cors || xhrSupported && !options.crossDomain ) {
9060 send: function( headers, complete ) {
9062 xhr = options.xhr();
9073 if ( options.xhrFields ) {
9074 for ( i in options.xhrFields ) {
9075 xhr[ i ] = options.xhrFields[ i ];
9080 if ( options.mimeType && xhr.overrideMimeType ) {
9081 xhr.overrideMimeType( options.mimeType );
9089 if ( !options.crossDomain && !headers[
"X-Requested-With" ] ) {
9090 headers[
"X-Requested-With" ] =
"XMLHttpRequest";
9094 for ( i in headers ) {
9095 xhr.setRequestHeader( i, headers[ i ] );
9099 callback = function( type ) {
9102 callback = errorCallback = xhr.onload =
9103 xhr.onerror = xhr.onabort = xhr.onreadystatechange = null;
9105 if ( type ===
"abort" ) {
9107 } else if ( type ===
"error" ) {
9112 if ( typeof xhr.status !==
"number" ) {
9113 complete( 0,
"error" );
9124 xhrSuccessStatus[ xhr.status ] || xhr.status,
9130 ( xhr.responseType ||
"text" ) !==
"text" ||
9131 typeof xhr.responseText !==
"string" ?
9132 { binary: xhr.response } :
9133 { text: xhr.responseText },
9134 xhr.getAllResponseHeaders()
9142 xhr.onload = callback();
9143 errorCallback = xhr.onerror = callback(
"error" );
9148 if ( xhr.onabort !== undefined ) {
9149 xhr.onabort = errorCallback;
9151 xhr.onreadystatechange = function() {
9154 if ( xhr.readyState === 4 ) {
9160 window.setTimeout( function() {
9170 callback = callback(
"abort" );
9175 xhr.send( options.hasContent && options.data || null );
9200 script:
"text/javascript, application/javascript, " +
9201 "application/ecmascript, application/x-ecmascript" 9207 "text script":
function( text ) {
9208 jQuery.globalEval( text );
9215 jQuery.ajaxPrefilter(
"script",
function(
s ) {
9219 if (
s.crossDomain ) {
9225 jQuery.ajaxTransport(
"script",
function(
s ) {
9228 if (
s.crossDomain ) {
9229 var script, callback;
9231 send: function( _, complete ) {
9232 script = jQuery(
"<script>" ).prop( {
9233 charset: s.scriptCharset,
9237 callback = function( evt ) {
9241 complete( evt.type ===
"error" ? 404 : 200, evt.type );
9247 document.head.appendChild( script[ 0 ] );
9261 var oldCallbacks = [],
9262 rjsonp = /(=)\?(?=&|$)|\?\?/;
9267 jsonpCallback:
function() {
9268 var callback = oldCallbacks.pop() || ( jQuery.expando +
"_" + ( nonce++ ) );
9269 this[ callback ] =
true;
9275 jQuery.ajaxPrefilter(
"json jsonp",
function(
s, originalSettings, jqXHR ) {
9277 var callbackName, overwritten, responseContainer,
9278 jsonProp =
s.jsonp !==
false && ( rjsonp.test(
s.url ) ?
9280 typeof
s.data ===
"string" &&
9281 (
s.contentType ||
"" )
9282 .indexOf(
"application/x-www-form-urlencoded" ) === 0 &&
9283 rjsonp.test(
s.data ) &&
"data" 9287 if ( jsonProp ||
s.dataTypes[ 0 ] ===
"jsonp" ) {
9290 callbackName =
s.jsonpCallback = jQuery.isFunction(
s.jsonpCallback ) ?
9296 s[ jsonProp ] =
s[ jsonProp ].replace( rjsonp,
"$1" + callbackName );
9297 }
else if (
s.jsonp !==
false ) {
9298 s.url += ( rquery.test(
s.url ) ?
"&" :
"?" ) +
s.jsonp +
"=" + callbackName;
9302 s.converters[
"script json" ] =
function() {
9303 if ( !responseContainer ) {
9304 jQuery.error( callbackName +
" was not called" );
9306 return responseContainer[ 0 ];
9310 s.dataTypes[ 0 ] =
"json";
9313 overwritten = window[ callbackName ];
9314 window[ callbackName ] =
function() {
9315 responseContainer = arguments;
9319 jqXHR.always(
function() {
9323 jQuery( window ).removeProp( callbackName );
9327 window[ callbackName ] = overwritten;
9331 if (
s[ callbackName ] ) {
9334 s.jsonpCallback = originalSettings.jsonpCallback;
9337 oldCallbacks.push( callbackName );
9341 if ( responseContainer && jQuery.isFunction( overwritten ) ) {
9342 overwritten( responseContainer[ 0 ] );
9345 responseContainer = overwritten =
undefined;
9360 jQuery.parseHTML =
function( data, context, keepScripts ) {
9361 if ( !data || typeof data !==
"string" ) {
9364 if ( typeof context ===
"boolean" ) {
9365 keepScripts = context;
9368 context = context || document;
9370 var parsed = rsingleTag.exec( data ),
9371 scripts = !keepScripts && [];
9375 return [ context.createElement( parsed[ 1 ] ) ];
9378 parsed = buildFragment( [ data ], context, scripts );
9380 if ( scripts && scripts.length ) {
9381 jQuery( scripts ).remove();
9384 return jQuery.merge( [], parsed.childNodes );
9389 var _load = jQuery.fn.load;
9394 jQuery.fn.load =
function( url, params, callback ) {
9395 if ( typeof url !==
"string" && _load ) {
9396 return _load.apply(
this, arguments );
9399 var selector, type, response,
9401 off = url.indexOf(
" " );
9404 selector = jQuery.trim( url.slice( off ) );
9405 url = url.slice( 0, off );
9409 if ( jQuery.isFunction( params ) ) {
9416 }
else if ( params && typeof params ===
"object" ) {
9421 if (
self.length > 0 ) {
9428 type: type ||
"GET",
9431 } ).done(
function( responseText ) {
9434 response = arguments;
9436 self.html( selector ?
9440 jQuery(
"<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
9448 } ).always( callback &&
function( jqXHR, status ) {
9449 self.each(
function() {
9450 callback.apply(
this, response || [ jqXHR.responseText, status, jqXHR ] );
9469 ],
function( i, type ) {
9470 jQuery.fn[ type ] =
function(
fn ) {
9471 return this.on( type,
fn );
9478 jQuery.expr.filters.animated =
function( elem ) {
9479 return jQuery.grep( jQuery.timers,
function(
fn ) {
9480 return elem === fn.elem;
9490 function getWindow( elem ) {
9491 return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
9495 setOffset:
function( elem, options, i ) {
9496 var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
9497 position = jQuery.css( elem,
"position" ),
9498 curElem = jQuery( elem ),
9502 if ( position ===
"static" ) {
9503 elem.style.position =
"relative";
9506 curOffset = curElem.offset();
9507 curCSSTop = jQuery.css( elem,
"top" );
9508 curCSSLeft = jQuery.css( elem,
"left" );
9509 calculatePosition = ( position ===
"absolute" || position ===
"fixed" ) &&
9510 ( curCSSTop + curCSSLeft ).indexOf(
"auto" ) > -1;
9514 if ( calculatePosition ) {
9515 curPosition = curElem.position();
9516 curTop = curPosition.top;
9517 curLeft = curPosition.left;
9520 curTop = parseFloat( curCSSTop ) || 0;
9521 curLeft = parseFloat( curCSSLeft ) || 0;
9524 if ( jQuery.isFunction( options ) ) {
9527 options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
9530 if ( options.top != null ) {
9531 props.top = ( options.top - curOffset.top ) + curTop;
9533 if ( options.left != null ) {
9534 props.left = ( options.left - curOffset.left ) + curLeft;
9537 if (
"using" in options ) {
9538 options.using.call( elem, props );
9541 curElem.css( props );
9547 offset:
function( options ) {
9548 if ( arguments.length ) {
9551 this.
each(
function( i ) {
9552 jQuery.offset.setOffset(
this, options, i );
9558 box = { top: 0, left: 0 },
9559 doc = elem && elem.ownerDocument;
9565 docElem = doc.documentElement;
9568 if ( !jQuery.contains( docElem, elem ) ) {
9572 box = elem.getBoundingClientRect();
9573 win = getWindow( doc );
9575 top: box.top + win.pageYOffset - docElem.clientTop,
9576 left: box.left + win.pageXOffset - docElem.clientLeft
9580 position:
function() {
9585 var offsetParent, offset,
9587 parentOffset = { top: 0, left: 0 };
9591 if ( jQuery.css( elem,
"position" ) ===
"fixed" ) {
9594 offset = elem.getBoundingClientRect();
9599 offsetParent = this.offsetParent();
9602 offset = this.offset();
9603 if ( !jQuery.nodeName( offsetParent[ 0 ],
"html" ) ) {
9604 parentOffset = offsetParent.offset();
9608 parentOffset.top += jQuery.css( offsetParent[ 0 ],
"borderTopWidth",
true );
9609 parentOffset.left += jQuery.css( offsetParent[ 0 ],
"borderLeftWidth",
true );
9614 top: offset.top - parentOffset.top - jQuery.css( elem,
"marginTop",
true ),
9615 left: offset.left - parentOffset.left - jQuery.css( elem,
"marginLeft",
true )
9629 offsetParent:
function() {
9630 return this.map(
function() {
9631 var offsetParent = this.offsetParent;
9633 while ( offsetParent && jQuery.css( offsetParent,
"position" ) ===
"static" ) {
9634 offsetParent = offsetParent.offsetParent;
9637 return offsetParent || documentElement;
9643 jQuery.each( { scrollLeft:
"pageXOffset", scrollTop:
"pageYOffset" },
function( method, prop ) {
9644 var top =
"pageYOffset" === prop;
9646 jQuery.fn[ method ] =
function( val ) {
9647 return access(
this,
function( elem, method, val ) {
9648 var win = getWindow( elem );
9651 return win ? win[ prop ] : elem[ method ];
9656 !top ? val : win.pageXOffset,
9657 top ? val : win.pageYOffset
9661 elem[ method ] = val;
9663 }, method, val, arguments.length );
9673 jQuery.each( [
"top",
"left" ],
function( i, prop ) {
9674 jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
9675 function( elem, computed ) {
9677 computed = curCSS( elem, prop );
9680 return rnumnonpx.test( computed ) ?
9681 jQuery( elem ).position()[ prop ] +
"px" :
9690 jQuery.each( { Height:
"height", Width:
"width" },
function( name, type ) {
9691 jQuery.each( { padding:
"inner" + name, content: type,
"":
"outer" + name },
9692 function( defaultExtra, funcName ) {
9695 jQuery.fn[ funcName ] =
function( margin, value ) {
9696 var chainable = arguments.length && ( defaultExtra || typeof margin !==
"boolean" ),
9697 extra = defaultExtra || ( margin ===
true || value ===
true ?
"margin" :
"border" );
9699 return access(
this,
function( elem, type, value ) {
9702 if ( jQuery.isWindow( elem ) ) {
9707 return elem.document.documentElement[
"client" + name ];
9711 if ( elem.nodeType === 9 ) {
9712 doc = elem.documentElement;
9717 elem.body[
"scroll" + name ], doc[
"scroll" + name ],
9718 elem.body[
"offset" + name ], doc[
"offset" + name ],
9719 doc[
"client" + name ]
9726 jQuery.css( elem, type, extra ) :
9729 jQuery.style( elem, type, value, extra );
9730 }, type, chainable ? margin :
undefined, chainable, null );
9738 bind:
function( types, data,
fn ) {
9739 return this.on( types, null, data,
fn );
9741 unbind:
function( types,
fn ) {
9742 return this.off( types, null,
fn );
9745 delegate:
function( selector, types, data,
fn ) {
9746 return this.on( types, selector, data,
fn );
9748 undelegate:
function( selector, types,
fn ) {
9751 return arguments.length === 1 ?
9752 this.off( selector,
"**" ) :
9753 this.off( types, selector ||
"**",
fn );
9760 jQuery.fn.andSelf = jQuery.fn.addBack;
9778 if ( typeof define ===
"function" && define.amd ) {
9779 define(
"jquery", [],
function() {
9789 _jQuery = window.jQuery,
9794 jQuery.noConflict =
function( deep ) {
9795 if ( window.$ === jQuery ) {
9799 if ( deep && window.jQuery === jQuery ) {
9800 window.jQuery = _jQuery;
9810 window.jQuery = window.$ = jQuery;
if(typeof jQuery=== 'undefined')
function n each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "), function(a, b){i["[object "+b+"]"]=b.toLowerCase()})
c c c prototype c prototype toggle