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 ) {
48 var slice = deletedIds.slice;
50 var concat = deletedIds.concat;
52 var push = deletedIds.push;
54 var indexOf = deletedIds.indexOf;
58 var toString = class2type.toString;
60 var hasOwn = class2type.hasOwnProperty;
70 jQuery =
function( selector, context ) {
73 return new jQuery.fn.init( selector, context );
78 rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
82 rdashAlpha = /-([\da-z])/gi,
85 fcamelCase =
function( all, letter ) {
86 return letter.toUpperCase();
89 jQuery.fn = jQuery.prototype = {
101 toArray:
function() {
102 return slice.call(
this );
107 get:
function( num ) {
111 ( num < 0 ?
this[ num + this.length ] :
this[ num ] ) :
119 pushStack:
function( elems ) {
122 var ret = jQuery.merge( this.constructor(), elems );
125 ret.prevObject =
this;
126 ret.context = this.context;
135 each:
function( callback, args ) {
136 return jQuery.each(
this, callback, args );
139 map:
function( callback ) {
140 return this.pushStack( jQuery.map(
this,
function( elem, i ) {
141 return callback.call( elem, i, elem );
146 return this.pushStack( slice.apply(
this, arguments ) );
154 return this.eq( -1 );
158 var len = this.length,
159 j = +i + ( i < 0 ? len : 0 );
160 return this.pushStack( j >= 0 && j < len ? [
this[j] ] : [] );
164 return this.prevObject || this.constructor(null);
170 sort: deletedIds.sort,
171 splice: deletedIds.splice
174 jQuery.extend = jQuery.fn.extend =
function() {
175 var src, copyIsArray, copy, name, options, clone,
176 target = arguments[0] || {},
178 length = arguments.length,
182 if ( typeof target ===
"boolean" ) {
186 target = arguments[ i ] || {};
191 if ( typeof target !==
"object" && !jQuery.isFunction(target) ) {
196 if ( i === length ) {
201 for ( ; i < length; i++ ) {
203 if ( (options = arguments[ i ]) != null ) {
205 for ( name in options ) {
206 src = target[ name ];
207 copy = options[ name ];
210 if ( target === copy ) {
215 if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
218 clone = src && jQuery.isArray(src) ? src : [];
221 clone = src && jQuery.isPlainObject(src) ? src : {};
225 target[ name ] = jQuery.extend( deep, clone, copy );
228 }
else if ( copy !== undefined ) {
229 target[ name ] = copy;
241 expando:
"jQuery" + ( version + Math.random() ).replace( /\D/g,
"" ),
246 error:
function( msg ) {
247 throw new Error( msg );
255 isFunction:
function( obj ) {
256 return jQuery.type(obj) ===
"function";
259 isArray: Array.isArray ||
function( obj ) {
260 return jQuery.type(obj) ===
"array";
263 isWindow:
function( obj ) {
265 return obj != null && obj == obj.window;
268 isNumeric:
function( obj ) {
272 return !jQuery.isArray( obj ) && obj - parseFloat( obj ) >= 0;
275 isEmptyObject:
function( obj ) {
277 for ( name in obj ) {
283 isPlainObject:
function( obj ) {
289 if ( !obj || jQuery.type(obj) !==
"object" || obj.nodeType || jQuery.isWindow( obj ) ) {
295 if ( obj.constructor &&
296 !hasOwn.call(obj,
"constructor") &&
297 !hasOwn.call(obj.constructor.prototype,
"isPrototypeOf") ) {
307 if ( support.ownLast ) {
309 return hasOwn.call( obj, key );
315 for ( key in obj ) {}
317 return key === undefined || hasOwn.call( obj, key );
320 type:
function( obj ) {
324 return typeof obj ===
"object" || typeof obj ===
"function" ?
325 class2type[ toString.call(obj) ] ||
"object" :
332 globalEval:
function( data ) {
333 if ( data && jQuery.trim( data ) ) {
337 ( window.execScript ||
function( data ) {
338 window[
"eval" ].call( window, data );
345 camelCase:
function( string ) {
346 return string.replace( rmsPrefix,
"ms-" ).replace( rdashAlpha, fcamelCase );
349 nodeName:
function( elem, name ) {
350 return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
354 each:
function( obj, callback, args ) {
358 isArray = isArraylike( obj );
362 for ( ; i < length; i++ ) {
363 value = callback.apply( obj[ i ], args );
365 if ( value ===
false ) {
371 value = callback.apply( obj[ i ], args );
373 if ( value ===
false ) {
382 for ( ; i < length; i++ ) {
383 value = callback.call( obj[ i ], i, obj[ i ] );
385 if ( value ===
false ) {
391 value = callback.call( obj[ i ], i, obj[ i ] );
393 if ( value ===
false ) {
404 trim:
function( text ) {
405 return text == null ?
407 ( text +
"" ).replace( rtrim,
"" );
411 makeArray:
function( arr, results ) {
412 var ret = results || [];
415 if ( isArraylike( Object(arr) ) ) {
417 typeof arr ===
"string" ?
421 push.call( ret, arr );
428 inArray:
function( elem, arr, i ) {
433 return indexOf.call( arr, elem, i );
437 i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;
439 for ( ; i < len; i++ ) {
441 if ( i in arr && arr[ i ] === elem ) {
450 merge:
function( first, second ) {
451 var len = +second.length,
456 first[ i++ ] = second[ j++ ];
462 while ( second[j] !== undefined ) {
463 first[ i++ ] = second[ j++ ];
472 grep:
function( elems, callback, invert ) {
476 length = elems.length,
477 callbackExpect = !invert;
481 for ( ; i < length; i++ ) {
482 callbackInverse = !callback( elems[ i ], i );
483 if ( callbackInverse !== callbackExpect ) {
484 matches.push( elems[ i ] );
492 map:
function( elems, callback, arg ) {
495 length = elems.length,
496 isArray = isArraylike( elems ),
501 for ( ; i < length; i++ ) {
502 value = callback( elems[ i ], i, arg );
504 if ( value != null ) {
512 value = callback( elems[ i ], i, arg );
514 if ( value != null ) {
521 return concat.apply( [], ret );
529 proxy:
function( fn, context ) {
530 var args, proxy, tmp;
532 if ( typeof context ===
"string" ) {
540 if ( !jQuery.isFunction( fn ) ) {
545 args = slice.call( arguments, 2 );
547 return fn.apply( context ||
this, args.concat( slice.call( arguments ) ) );
551 proxy.guid = fn.guid = fn.guid || jQuery.guid++;
557 return +(
new Date() );
566 jQuery.each(
"Boolean Number String Function Array Date RegExp Object Error".split(
" "),
function(i, name) {
567 class2type[
"[object " + name +
"]" ] = name.toLowerCase();
570 function isArraylike( obj ) {
571 var length = obj.length,
572 type = jQuery.type( obj );
574 if ( type ===
"function" || jQuery.isWindow( obj ) ) {
578 if ( obj.nodeType === 1 && length ) {
582 return type ===
"array" || length === 0 ||
583 typeof length ===
"number" && length > 0 && ( length - 1 ) in obj;
596 (
function( window ) {
621 expando =
"sizzle" + -(
new Date()),
622 preferredDoc = window.document,
625 classCache = createCache(),
626 tokenCache = createCache(),
627 compilerCache = createCache(),
628 sortOrder =
function(
a, b ) {
636 strundefined = typeof undefined,
637 MAX_NEGATIVE = 1 << 31,
640 hasOwn = ({}).hasOwnProperty,
643 push_native = arr.push,
647 indexOf = arr.indexOf ||
function( elem ) {
650 for ( ; i < len; i++ ) {
651 if (
this[i] === elem ) {
658 booleans =
"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
663 whitespace =
"[\\x20\\t\\r\\n\\f]",
665 characterEncoding =
"(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
670 identifier = characterEncoding.replace(
"w",
"w#" ),
673 attributes =
"\\[" + whitespace +
"*(" + characterEncoding +
")(?:" + whitespace +
675 "*([*^$|!~]?=)" + whitespace +
677 "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier +
"))|)" + whitespace +
680 pseudos =
":(" + characterEncoding +
")(?:\\((" +
683 "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
685 "((?:\\\\.|[^\\\\()[\\]]|" + attributes +
")*)|" +
691 rtrim =
new RegExp(
"^" + whitespace +
"+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace +
"+$",
"g" ),
693 rcomma =
new RegExp(
"^" + whitespace +
"*," + whitespace +
"*" ),
694 rcombinators =
new RegExp(
"^" + whitespace +
"*([>+~]|" + whitespace +
")" + whitespace +
"*" ),
696 rattributeQuotes =
new RegExp(
"=" + whitespace +
"*([^\\]'\"]*?)" + whitespace +
"*\\]",
"g" ),
698 rpseudo =
new RegExp( pseudos ),
699 ridentifier =
new RegExp(
"^" + identifier +
"$" ),
702 "ID":
new RegExp(
"^#(" + characterEncoding +
")" ),
703 "CLASS":
new RegExp(
"^\\.(" + characterEncoding +
")" ),
704 "TAG":
new RegExp(
"^(" + characterEncoding.replace(
"w",
"w*" ) +
")" ),
705 "ATTR":
new RegExp(
"^" + attributes ),
706 "PSEUDO":
new RegExp(
"^" + pseudos ),
707 "CHILD":
new RegExp(
"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
708 "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace +
"*(?:([+-]|)" + whitespace +
709 "*(\\d+)|))" + whitespace +
"*\\)|)",
"i" ),
710 "bool":
new RegExp(
"^(?:" + booleans +
")$",
"i" ),
713 "needsContext":
new RegExp(
"^" + whitespace +
"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
714 whitespace +
"*((?:-\\d)?\\d*)" + whitespace +
"*\\)|)(?=[^-]|$)",
"i" )
717 rinputs = /^(?:input|select|textarea|button)$/i,
720 rnative = /^[^{]+\{\s*\[native \w/,
723 rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
728 // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters 729 runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), 730 funescape = function( _, escaped, escapedWhitespace ) { 731 var high = "0x" + escaped - 0x10000; 732 // NaN means non-codepoint 733 // Support: Firefox<24 734 // Workaround erroneous numeric interpretation of +"0x" 735 return high !== high || escapedWhitespace ? 739 String.fromCharCode( high + 0x10000 ) : 740 // Supplemental Plane codepoint (surrogate pair) 741 String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); 744 // Optimize for push.apply( _, NodeList ) 747 (arr = slice.call( preferredDoc.childNodes )), 748 preferredDoc.childNodes 750 // Support: Android<4.0 751 // Detect silently failing push.apply 752 arr[ preferredDoc.childNodes.length ].nodeType; 754 push = { apply: arr.length ? 756 // Leverage slice if possible 757 function( target, els ) { 758 push_native.apply( target, slice.call(els) ); 762 // Otherwise append directly 763 function( target, els ) { 764 var j = target.length, 766 // Can't trust NodeList.length
767 while ( (target[j++] = els[i++]) ) {}
768 target.length = j - 1;
773 function Sizzle( selector, context, results, seed ) {
774 var match, elem, m, nodeType,
776 i, groups, old, nid, newContext, newSelector;
778 if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
779 setDocument( context );
782 context = context || document;
783 results = results || [];
785 if ( !selector || typeof selector !==
"string" ) {
789 if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
793 if ( documentIsHTML && !seed ) {
796 if ( (match = rquickExpr.exec( selector )) ) {
798 if ( (m = match[1]) ) {
799 if ( nodeType === 9 ) {
800 elem = context.getElementById( m );
803 if ( elem && elem.parentNode ) {
806 if ( elem.id === m ) {
807 results.push( elem );
815 if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
816 contains( context, elem ) && elem.id === m ) {
817 results.push( elem );
823 }
else if ( match[2] ) {
824 push.apply( results, context.getElementsByTagName( selector ) );
828 }
else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
829 push.apply( results, context.getElementsByClassName( m ) );
835 if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
837 newContext = context;
838 newSelector = nodeType === 9 && selector;
844 if ( nodeType === 1 && context.nodeName.toLowerCase() !==
"object" ) {
845 groups = tokenize( selector );
847 if ( (old = context.getAttribute(
"id")) ) {
848 nid = old.replace( rescape,
"\\$&" );
850 context.setAttribute(
"id", nid );
852 nid =
"[id='" + nid +
"'] ";
856 groups[i] = nid + toSelector( groups[i] );
858 newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
859 newSelector = groups.join(
",");
865 newContext.querySelectorAll( newSelector )
871 context.removeAttribute(
"id");
879 return select( selector.replace( rtrim,
"$1" ), context, results, seed );
888 function createCache() {
891 function cache( key, value ) {
893 if ( keys.push( key +
" " ) > Expr.cacheLength ) {
895 delete cache[ keys.shift() ];
897 return (cache[ key +
" " ] = value);
906 function markFunction( fn ) {
907 fn[ expando ] =
true;
915 function assert( fn ) {
916 var div = document.createElement(
"div");
924 if ( div.parentNode ) {
925 div.parentNode.removeChild( div );
937 function addHandle( attrs, handler ) {
938 var arr = attrs.split(
"|"),
942 Expr.attrHandle[ arr[i] ] = handler;
952 function siblingCheck(
a, b ) {
954 diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
955 ( ~b.sourceIndex || MAX_NEGATIVE ) -
956 ( ~a.sourceIndex || MAX_NEGATIVE );
965 while ( (cur = cur.nextSibling) ) {
979 function createInputPseudo( type ) {
980 return function( elem ) {
981 var name = elem.nodeName.toLowerCase();
982 return name ===
"input" && elem.type === type;
990 function createButtonPseudo( type ) {
991 return function( elem ) {
992 var name = elem.nodeName.toLowerCase();
993 return (name ===
"input" || name ===
"button") && elem.type === type;
1001 function createPositionalPseudo( fn ) {
1002 return markFunction(
function( argument ) {
1003 argument = +argument;
1004 return markFunction(
function( seed, matches ) {
1006 matchIndexes = fn( [], seed.length, argument ),
1007 i = matchIndexes.length;
1011 if ( seed[ (j = matchIndexes[i]) ] ) {
1012 seed[j] = !(matches[j] = seed[j]);
1024 function testContext( context ) {
1025 return context && typeof context.getElementsByTagName !== strundefined && context;
1029 support = Sizzle.support = {};
1036 isXML = Sizzle.isXML =
function( elem ) {
1039 var documentElement = elem && (elem.ownerDocument || elem).documentElement;
1040 return documentElement ? documentElement.nodeName !==
"HTML" :
false;
1048 setDocument = Sizzle.setDocument =
function( node ) {
1050 doc = node ? node.ownerDocument || node : preferredDoc,
1051 parent = doc.defaultView;
1054 if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
1060 docElem = doc.documentElement;
1063 documentIsHTML = !isXML( doc );
1069 if ( parent && parent !== parent.top ) {
1071 if ( parent.addEventListener ) {
1072 parent.addEventListener(
"unload",
function() {
1075 }
else if ( parent.attachEvent ) {
1076 parent.attachEvent(
"onunload",
function() {
1087 support.attributes = assert(
function( div ) {
1088 div.className =
"i";
1089 return !div.getAttribute(
"className");
1096 support.getElementsByTagName = assert(
function( div ) {
1097 div.appendChild( doc.createComment(
"") );
1098 return !div.getElementsByTagName(
"*").length;
1102 support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(
function( div ) {
1103 div.innerHTML =
"<div class='a'></div><div class='a i'></div>";
1107 div.firstChild.className =
"i";
1110 return div.getElementsByClassName(
"i").length === 2;
1117 support.getById = assert(
function( div ) {
1118 docElem.appendChild( div ).id = expando;
1119 return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
1123 if ( support.getById ) {
1124 Expr.find[
"ID"] =
function( id, context ) {
1125 if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
1126 var m = context.getElementById(
id );
1129 return m && m.parentNode ? [ m ] : [];
1132 Expr.filter[
"ID"] =
function( id ) {
1133 var attrId =
id.replace( runescape, funescape );
1134 return function( elem ) {
1135 return elem.getAttribute(
"id") === attrId;
1141 delete Expr.find[
"ID"];
1143 Expr.filter[
"ID"] =
function( id ) {
1144 var attrId =
id.replace( runescape, funescape );
1145 return function( elem ) {
1146 var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode(
"id");
1147 return node && node.value === attrId;
1153 Expr.find[
"TAG"] = support.getElementsByTagName ?
1154 function( tag, context ) {
1155 if ( typeof context.getElementsByTagName !== strundefined ) {
1156 return context.getElementsByTagName( tag );
1159 function( tag, context ) {
1163 results = context.getElementsByTagName( tag );
1166 if ( tag ===
"*" ) {
1167 while ( (elem = results[i++]) ) {
1168 if ( elem.nodeType === 1 ) {
1179 Expr.find[
"CLASS"] = support.getElementsByClassName &&
function( className, context ) {
1180 if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
1181 return context.getElementsByClassName( className );
1200 if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
1203 assert(
function( div ) {
1209 div.innerHTML =
"<select msallowclip=''><option selected=''></option></select>";
1215 if ( div.querySelectorAll(
"[msallowclip^='']").length ) {
1216 rbuggyQSA.push(
"[*^$]=" + whitespace +
"*(?:''|\"\")" );
1221 if ( !div.querySelectorAll(
"[selected]").length ) {
1222 rbuggyQSA.push(
"\\[" + whitespace +
"*(?:value|" + booleans +
")" );
1228 if ( !div.querySelectorAll(
":checked").length ) {
1229 rbuggyQSA.push(
":checked");
1233 assert(
function( div ) {
1236 var input = doc.createElement(
"input");
1237 input.setAttribute(
"type",
"hidden" );
1238 div.appendChild( input ).setAttribute(
"name",
"D" );
1242 if ( div.querySelectorAll(
"[name=d]").length ) {
1243 rbuggyQSA.push(
"name" + whitespace +
"*[*^$|!~]?=" );
1248 if ( !div.querySelectorAll(
":enabled").length ) {
1249 rbuggyQSA.push(
":enabled",
":disabled" );
1253 div.querySelectorAll(
"*,:x");
1254 rbuggyQSA.push(
",.*:");
1258 if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
1259 docElem.webkitMatchesSelector ||
1260 docElem.mozMatchesSelector ||
1261 docElem.oMatchesSelector ||
1262 docElem.msMatchesSelector) )) ) {
1264 assert(
function( div ) {
1267 support.disconnectedMatch = matches.call( div,
"div" );
1271 matches.call( div,
"[s!='']:x" );
1272 rbuggyMatches.push(
"!=", pseudos );
1276 rbuggyQSA = rbuggyQSA.length &&
new RegExp( rbuggyQSA.join(
"|") );
1277 rbuggyMatches = rbuggyMatches.length &&
new RegExp( rbuggyMatches.join(
"|") );
1281 hasCompare = rnative.test( docElem.compareDocumentPosition );
1286 contains = hasCompare || rnative.test( docElem.contains ) ?
1288 var adown = a.nodeType === 9 ? a.documentElement : a,
1289 bup = b && b.parentNode;
1290 return a === bup || !!( bup && bup.nodeType === 1 && (
1292 adown.contains( bup ) :
1293 a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
1298 while ( (b = b.parentNode) ) {
1311 sortOrder = hasCompare ?
1316 hasDuplicate =
true;
1321 var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
1327 compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
1328 a.compareDocumentPosition( b ) :
1335 (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
1338 if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
1341 if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
1347 ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
1351 return compare & 4 ? -1 : 1;
1356 hasDuplicate =
true;
1368 if ( !aup || !bup ) {
1369 return a === doc ? -1 :
1374 ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
1378 }
else if ( aup === bup ) {
1379 return siblingCheck( a, b );
1384 while ( (cur = cur.parentNode) ) {
1388 while ( (cur = cur.parentNode) ) {
1393 while ( ap[i] === bp[i] ) {
1399 siblingCheck( ap[i], bp[i] ) :
1402 ap[i] === preferredDoc ? -1 :
1403 bp[i] === preferredDoc ? 1 :
1410 Sizzle.matches =
function( expr, elements ) {
1411 return Sizzle( expr, null, null, elements );
1414 Sizzle.matchesSelector =
function( elem, expr ) {
1416 if ( ( elem.ownerDocument || elem ) !== document ) {
1417 setDocument( elem );
1421 expr = expr.replace( rattributeQuotes,
"='$1']" );
1423 if ( support.matchesSelector && documentIsHTML &&
1424 ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
1425 ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
1428 var ret = matches.call( elem, expr );
1431 if ( ret || support.disconnectedMatch ||
1434 elem.document && elem.document.nodeType !== 11 ) {
1440 return Sizzle( expr, document, null, [ elem ] ).length > 0;
1443 Sizzle.contains =
function( context, elem ) {
1445 if ( ( context.ownerDocument || context ) !== document ) {
1446 setDocument( context );
1448 return contains( context, elem );
1451 Sizzle.attr =
function( elem, name ) {
1453 if ( ( elem.ownerDocument || elem ) !== document ) {
1454 setDocument( elem );
1457 var fn = Expr.attrHandle[ name.toLowerCase() ],
1459 val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
1460 fn( elem, name, !documentIsHTML ) :
1463 return val !== undefined ?
1465 support.attributes || !documentIsHTML ?
1466 elem.getAttribute( name ) :
1467 (val = elem.getAttributeNode(name)) && val.specified ?
1472 Sizzle.error =
function( msg ) {
1473 throw new Error(
"Syntax error, unrecognized expression: " + msg );
1480 Sizzle.uniqueSort =
function( results ) {
1487 hasDuplicate = !support.detectDuplicates;
1488 sortInput = !support.sortStable && results.slice( 0 );
1489 results.sort( sortOrder );
1491 if ( hasDuplicate ) {
1492 while ( (elem = results[i++]) ) {
1493 if ( elem === results[ i ] ) {
1494 j = duplicates.push( i );
1498 results.splice( duplicates[ j ], 1 );
1513 getText = Sizzle.getText =
function( elem ) {
1517 nodeType = elem.nodeType;
1521 while ( (node = elem[i++]) ) {
1523 ret += getText( node );
1525 }
else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
1528 if ( typeof elem.textContent ===
"string" ) {
1529 return elem.textContent;
1532 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1533 ret += getText( elem );
1536 }
else if ( nodeType === 3 || nodeType === 4 ) {
1537 return elem.nodeValue;
1544 Expr = Sizzle.selectors = {
1549 createPseudo: markFunction,
1558 ">": { dir:
"parentNode", first:
true },
1559 " ": { dir:
"parentNode" },
1560 "+": { dir:
"previousSibling", first:
true },
1561 "~": { dir:
"previousSibling" }
1565 "ATTR":
function( match ) {
1566 match[1] = match[1].replace( runescape, funescape );
1569 match[3] = ( match[3] || match[4] || match[5] ||
"" ).replace( runescape, funescape );
1571 if ( match[2] ===
"~=" ) {
1572 match[3] =
" " + match[3] +
" ";
1575 return match.slice( 0, 4 );
1578 "CHILD":
function( match ) {
1589 match[1] = match[1].toLowerCase();
1591 if ( match[1].slice( 0, 3 ) ===
"nth" ) {
1594 Sizzle.error( match[0] );
1599 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] ===
"even" || match[3] ===
"odd" ) );
1600 match[5] = +( ( match[7] + match[8] ) || match[3] ===
"odd" );
1603 }
else if ( match[3] ) {
1604 Sizzle.error( match[0] );
1610 "PSEUDO":
function( match ) {
1612 unquoted = !match[6] && match[2];
1614 if ( matchExpr[
"CHILD"].test( match[0] ) ) {
1620 match[2] = match[4] || match[5] ||
"";
1623 }
else if ( unquoted && rpseudo.test( unquoted ) &&
1625 (excess = tokenize( unquoted,
true )) &&
1627 (excess = unquoted.indexOf(
")", unquoted.length - excess ) - unquoted.length) ) {
1630 match[0] = match[0].slice( 0, excess );
1631 match[2] = unquoted.slice( 0, excess );
1635 return match.slice( 0, 3 );
1641 "TAG":
function( nodeNameSelector ) {
1642 var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
1643 return nodeNameSelector ===
"*" ?
1644 function() {
return true; } :
1646 return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
1650 "CLASS":
function( className ) {
1651 var pattern = classCache[ className +
" " ];
1654 (pattern =
new RegExp(
"(^|" + whitespace +
")" + className +
"(" + whitespace +
"|$)" )) &&
1655 classCache( className,
function( elem ) {
1656 return pattern.test( typeof elem.className ===
"string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute(
"class") ||
"" );
1660 "ATTR":
function( name,
operator, check ) {
1661 return function( elem ) {
1662 var result = Sizzle.attr( elem, name );
1664 if ( result == null ) {
1665 return operator ===
"!=";
1673 return operator ===
"=" ? result === check :
1674 operator ===
"!=" ? result !== check :
1675 operator ===
"^=" ? check && result.indexOf( check ) === 0 :
1676 operator ===
"*=" ? check && result.indexOf( check ) > -1 :
1677 operator ===
"$=" ? check && result.slice( -check.length ) === check :
1678 operator === "~=" ? (
" " + result +
" " ).indexOf( check ) > -1 :
1679 operator ===
"|=" ? result === check || result.slice( 0, check.length + 1 ) === check +
"-" :
1684 "CHILD":
function( type, what, argument, first, last ) {
1685 var simple = type.slice( 0, 3 ) !==
"nth",
1686 forward = type.slice( -4 ) !==
"last",
1687 ofType = what ===
"of-type";
1689 return first === 1 && last === 0 ?
1693 return !!elem.parentNode;
1696 function( elem, context, xml ) {
1697 var cache, outerCache, node, diff, nodeIndex, start,
1698 dir = simple !== forward ?
"nextSibling" :
"previousSibling",
1699 parent = elem.parentNode,
1700 name = ofType && elem.nodeName.toLowerCase(),
1701 useCache = !xml && !ofType;
1709 while ( (node = node[ dir ]) ) {
1710 if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
1715 start = dir = type ===
"only" && !start &&
"nextSibling";
1720 start = [ forward ? parent.firstChild : parent.lastChild ];
1723 if ( forward && useCache ) {
1725 outerCache = parent[ expando ] || (parent[ expando ] = {});
1726 cache = outerCache[ type ] || [];
1727 nodeIndex = cache[0] === dirruns && cache[1];
1728 diff = cache[0] === dirruns && cache[2];
1729 node = nodeIndex && parent.childNodes[ nodeIndex ];
1731 while ( (node = ++nodeIndex && node && node[ dir ] ||
1734 (diff = nodeIndex = 0) || start.pop()) ) {
1737 if ( node.nodeType === 1 && ++diff && node === elem ) {
1738 outerCache[ type ] = [ dirruns, nodeIndex, diff ];
1744 }
else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
1750 while ( (node = ++nodeIndex && node && node[ dir ] ||
1751 (diff = nodeIndex = 0) || start.pop()) ) {
1753 if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
1756 (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
1759 if ( node === elem ) {
1768 return diff === first || ( diff % first === 0 && diff / first >= 0 );
1773 "PSEUDO":
function( pseudo, argument ) {
1779 fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
1780 Sizzle.error(
"unsupported pseudo: " + pseudo );
1785 if ( fn[ expando ] ) {
1786 return fn( argument );
1790 if ( fn.length > 1 ) {
1791 args = [ pseudo, pseudo,
"", argument ];
1792 return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
1793 markFunction(
function( seed, matches ) {
1795 matched = fn( seed, argument ),
1798 idx = indexOf.call( seed, matched[i] );
1799 seed[ idx ] = !( matches[ idx ] = matched[i] );
1803 return fn( elem, 0, args );
1813 "not": markFunction(
function( selector ) {
1819 matcher = compile( selector.replace( rtrim,
"$1" ) );
1821 return matcher[ expando ] ?
1822 markFunction(
function( seed, matches, context, xml ) {
1824 unmatched = matcher( seed, null, xml, [] ),
1829 if ( (elem = unmatched[i]) ) {
1830 seed[i] = !(matches[i] = elem);
1834 function( elem, context, xml ) {
1836 matcher( input, null, xml, results );
1837 return !results.pop();
1841 "has": markFunction(
function( selector ) {
1842 return function( elem ) {
1843 return Sizzle( selector, elem ).length > 0;
1847 "contains": markFunction(
function( text ) {
1848 return function( elem ) {
1849 return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
1860 "lang": markFunction(
function( lang ) {
1862 if ( !ridentifier.test(lang ||
"") ) {
1863 Sizzle.error(
"unsupported lang: " + lang );
1865 lang = lang.replace( runescape, funescape ).toLowerCase();
1866 return function( elem ) {
1869 if ( (elemLang = documentIsHTML ?
1871 elem.getAttribute(
"xml:lang") || elem.getAttribute(
"lang")) ) {
1873 elemLang = elemLang.toLowerCase();
1874 return elemLang === lang || elemLang.indexOf( lang +
"-" ) === 0;
1876 }
while ( (elem = elem.parentNode) && elem.nodeType === 1 );
1882 "target":
function( elem ) {
1883 var hash = window.location && window.location.hash;
1884 return hash && hash.slice( 1 ) === elem.id;
1887 "root":
function( elem ) {
1888 return elem === docElem;
1891 "focus":
function( elem ) {
1892 return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
1896 "enabled":
function( elem ) {
1897 return elem.disabled ===
false;
1900 "disabled":
function( elem ) {
1901 return elem.disabled ===
true;
1904 "checked":
function( elem ) {
1907 var nodeName = elem.nodeName.toLowerCase();
1908 return (nodeName ===
"input" && !!elem.checked) || (nodeName ===
"option" && !!elem.selected);
1911 "selected":
function( elem ) {
1914 if ( elem.parentNode ) {
1915 elem.parentNode.selectedIndex;
1918 return elem.selected ===
true;
1922 "empty":
function( elem ) {
1927 for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1928 if ( elem.nodeType < 6 ) {
1935 "parent":
function( elem ) {
1936 return !Expr.pseudos[
"empty"]( elem );
1940 "header":
function( elem ) {
1941 return rheader.test( elem.nodeName );
1944 "input":
function( elem ) {
1945 return rinputs.test( elem.nodeName );
1948 "button":
function( elem ) {
1949 var name = elem.nodeName.toLowerCase();
1950 return name ===
"input" && elem.type ===
"button" || name ===
"button";
1953 "text":
function( elem ) {
1955 return elem.nodeName.toLowerCase() ===
"input" &&
1956 elem.type ===
"text" &&
1960 ( (attr = elem.getAttribute(
"type")) == null || attr.toLowerCase() ===
"text" );
1964 "first": createPositionalPseudo(
function() {
1968 "last": createPositionalPseudo(
function( matchIndexes, length ) {
1969 return [ length - 1 ];
1972 "eq": createPositionalPseudo(
function( matchIndexes, length, argument ) {
1973 return [ argument < 0 ? argument + length : argument ];
1976 "even": createPositionalPseudo(
function( matchIndexes, length ) {
1978 for ( ; i < length; i += 2 ) {
1979 matchIndexes.push( i );
1981 return matchIndexes;
1984 "odd": createPositionalPseudo(
function( matchIndexes, length ) {
1986 for ( ; i < length; i += 2 ) {
1987 matchIndexes.push( i );
1989 return matchIndexes;
1992 "lt": createPositionalPseudo(
function( matchIndexes, length, argument ) {
1993 var i = argument < 0 ? argument + length : argument;
1994 for ( ; --i >= 0; ) {
1995 matchIndexes.push( i );
1997 return matchIndexes;
2000 "gt": createPositionalPseudo(
function( matchIndexes, length, argument ) {
2001 var i = argument < 0 ? argument + length : argument;
2002 for ( ; ++i < length; ) {
2003 matchIndexes.push( i );
2005 return matchIndexes;
2010 Expr.pseudos[
"nth"] = Expr.pseudos[
"eq"];
2013 for ( i in { radio:
true, checkbox:
true, file:
true, password:
true, image:
true } ) {
2014 Expr.pseudos[ i ] = createInputPseudo( i );
2016 for ( i in { submit:
true, reset:
true } ) {
2017 Expr.pseudos[ i ] = createButtonPseudo( i );
2021 function setFilters() {}
2022 setFilters.prototype = Expr.filters = Expr.pseudos;
2023 Expr.setFilters =
new setFilters();
2025 tokenize = Sizzle.tokenize =
function( selector, parseOnly ) {
2026 var matched, match, tokens, type,
2027 soFar, groups, preFilters,
2028 cached = tokenCache[ selector +
" " ];
2031 return parseOnly ? 0 : cached.slice( 0 );
2036 preFilters = Expr.preFilter;
2041 if ( !matched || (match = rcomma.exec( soFar )) ) {
2044 soFar = soFar.slice( match[0].length ) || soFar;
2046 groups.push( (tokens = []) );
2052 if ( (match = rcombinators.exec( soFar )) ) {
2053 matched = match.shift();
2057 type: match[0].replace( rtrim,
" " )
2059 soFar = soFar.slice( matched.length );
2063 for ( type in Expr.filter ) {
2064 if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
2065 (match = preFilters[ type ]( match ))) ) {
2066 matched = match.shift();
2072 soFar = soFar.slice( matched.length );
2087 Sizzle.error( selector ) :
2089 tokenCache( selector, groups ).slice( 0 );
2092 function toSelector( tokens ) {
2094 len = tokens.length,
2096 for ( ; i < len; i++ ) {
2097 selector += tokens[i].value;
2102 function addCombinator( matcher, combinator, base ) {
2103 var dir = combinator.dir,
2104 checkNonElements = base && dir ===
"parentNode",
2107 return combinator.first ?
2109 function( elem, context, xml ) {
2110 while ( (elem = elem[ dir ]) ) {
2111 if ( elem.nodeType === 1 || checkNonElements ) {
2112 return matcher( elem, context, xml );
2118 function( elem, context, xml ) {
2119 var oldCache, outerCache,
2120 newCache = [ dirruns, doneName ];
2124 while ( (elem = elem[ dir ]) ) {
2125 if ( elem.nodeType === 1 || checkNonElements ) {
2126 if ( matcher( elem, context, xml ) ) {
2132 while ( (elem = elem[ dir ]) ) {
2133 if ( elem.nodeType === 1 || checkNonElements ) {
2134 outerCache = elem[ expando ] || (elem[ expando ] = {});
2135 if ( (oldCache = outerCache[ dir ]) &&
2136 oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
2139 return (newCache[ 2 ] = oldCache[ 2 ]);
2142 outerCache[ dir ] = newCache;
2145 if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
2155 function elementMatcher( matchers ) {
2156 return matchers.length > 1 ?
2157 function( elem, context, xml ) {
2158 var i = matchers.length;
2160 if ( !matchers[i]( elem, context, xml ) ) {
2169 function multipleContexts( selector, contexts, results ) {
2171 len = contexts.length;
2172 for ( ; i < len; i++ ) {
2173 Sizzle( selector, contexts[i], results );
2178 function condense( unmatched, map, filter, context, xml ) {
2182 len = unmatched.length,
2183 mapped = map != null;
2185 for ( ; i < len; i++ ) {
2186 if ( (elem = unmatched[i]) ) {
2187 if ( !filter || filter( elem, context, xml ) ) {
2188 newUnmatched.push( elem );
2196 return newUnmatched;
2199 function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
2200 if ( postFilter && !postFilter[ expando ] ) {
2201 postFilter = setMatcher( postFilter );
2203 if ( postFinder && !postFinder[ expando ] ) {
2204 postFinder = setMatcher( postFinder, postSelector );
2206 return markFunction(
function( seed, results, context, xml ) {
2210 preexisting = results.length,
2213 elems = seed || multipleContexts( selector ||
"*", context.nodeType ? [ context ] : context, [] ),
2216 matcherIn = preFilter && ( seed || !selector ) ?
2217 condense( elems, preMap, preFilter, context, xml ) :
2220 matcherOut = matcher ?
2222 postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
2233 matcher( matcherIn, matcherOut, context, xml );
2238 temp = condense( matcherOut, postMap );
2239 postFilter( temp, [], context, xml );
2244 if ( (elem = temp[i]) ) {
2245 matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
2251 if ( postFinder || preFilter ) {
2255 i = matcherOut.length;
2257 if ( (elem = matcherOut[i]) ) {
2259 temp.push( (matcherIn[i] = elem) );
2262 postFinder( null, (matcherOut = []), temp, xml );
2266 i = matcherOut.length;
2268 if ( (elem = matcherOut[i]) &&
2269 (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
2271 seed[temp] = !(results[temp] = elem);
2278 matcherOut = condense(
2279 matcherOut === results ?
2280 matcherOut.splice( preexisting, matcherOut.length ) :
2284 postFinder( null, results, matcherOut, xml );
2286 push.apply( results, matcherOut );
2292 function matcherFromTokens( tokens ) {
2293 var checkContext, matcher, j,
2294 len = tokens.length,
2295 leadingRelative = Expr.relative[ tokens[0].type ],
2296 implicitRelative = leadingRelative || Expr.relative[
" "],
2297 i = leadingRelative ? 1 : 0,
2300 matchContext = addCombinator(
function( elem ) {
2301 return elem === checkContext;
2302 }, implicitRelative, true ),
2303 matchAnyContext = addCombinator(
function( elem ) {
2304 return indexOf.call( checkContext, elem ) > -1;
2305 }, implicitRelative, true ),
2306 matchers = [
function( elem, context, xml ) {
2307 return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
2308 (checkContext = context).nodeType ?
2309 matchContext( elem, context, xml ) :
2310 matchAnyContext( elem, context, xml ) );
2313 for ( ; i < len; i++ ) {
2314 if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
2315 matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
2317 matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
2320 if ( matcher[ expando ] ) {
2323 for ( ; j < len; j++ ) {
2324 if ( Expr.relative[ tokens[j].type ] ) {
2329 i > 1 && elementMatcher( matchers ),
2330 i > 1 && toSelector(
2332 tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type ===
" " ?
"*" :
"" })
2333 ).replace( rtrim,
"$1" ),
2335 i < j && matcherFromTokens( tokens.slice( i, j ) ),
2336 j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
2337 j < len && toSelector( tokens )
2340 matchers.push( matcher );
2344 return elementMatcher( matchers );
2347 function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
2348 var bySet = setMatchers.length > 0,
2349 byElement = elementMatchers.length > 0,
2350 superMatcher =
function( seed, context, xml, results, outermost ) {
2351 var elem, j, matcher,
2354 unmatched = seed && [],
2356 contextBackup = outermostContext,
2358 elems = seed || byElement && Expr.find[
"TAG"](
"*", outermost ),
2360 dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
2364 outermostContext = context !== document && context;
2371 for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
2372 if ( byElement && elem ) {
2374 while ( (matcher = elementMatchers[j++]) ) {
2375 if ( matcher( elem, context, xml ) ) {
2376 results.push( elem );
2381 dirruns = dirrunsUnique;
2388 if ( (elem = !matcher && elem) ) {
2394 unmatched.push( elem );
2401 if ( bySet && i !== matchedCount ) {
2403 while ( (matcher = setMatchers[j++]) ) {
2404 matcher( unmatched, setMatched, context, xml );
2409 if ( matchedCount > 0 ) {
2411 if ( !(unmatched[i] || setMatched[i]) ) {
2412 setMatched[i] = pop.call( results );
2418 setMatched = condense( setMatched );
2422 push.apply( results, setMatched );
2425 if ( outermost && !seed && setMatched.length > 0 &&
2426 ( matchedCount + setMatchers.length ) > 1 ) {
2428 Sizzle.uniqueSort( results );
2434 dirruns = dirrunsUnique;
2435 outermostContext = contextBackup;
2442 markFunction( superMatcher ) :
2446 compile = Sizzle.compile =
function( selector, match ) {
2449 elementMatchers = [],
2450 cached = compilerCache[ selector +
" " ];
2455 match = tokenize( selector );
2459 cached = matcherFromTokens( match[i] );
2460 if ( cached[ expando ] ) {
2461 setMatchers.push( cached );
2463 elementMatchers.push( cached );
2468 cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
2471 cached.selector = selector;
2485 select = Sizzle.select =
function( selector, context, results, seed ) {
2486 var i, tokens, token, type, find,
2487 compiled = typeof selector ===
"function" && selector,
2488 match = !seed && tokenize( (selector = compiled.selector || selector) );
2490 results = results || [];
2493 if ( match.length === 1 ) {
2496 tokens = match[0] = match[0].slice( 0 );
2497 if ( tokens.length > 2 && (token = tokens[0]).type ===
"ID" &&
2498 support.getById && context.nodeType === 9 && documentIsHTML &&
2499 Expr.relative[ tokens[1].type ] ) {
2501 context = ( Expr.find[
"ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
2506 }
else if ( compiled ) {
2507 context = context.parentNode;
2510 selector = selector.slice( tokens.shift().value.length );
2514 i = matchExpr[
"needsContext"].test( selector ) ? 0 : tokens.length;
2519 if ( Expr.relative[ (type = token.type) ] ) {
2522 if ( (find = Expr.find[ type ]) ) {
2525 token.matches[0].replace( runescape, funescape ),
2526 rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
2530 tokens.splice( i, 1 );
2531 selector = seed.length && toSelector( tokens );
2533 push.apply( results, seed );
2545 ( compiled || compile( selector, match ) )(
2550 rsibling.test( selector ) && testContext( context.parentNode ) || context
2558 support.sortStable = expando.split(
"").sort( sortOrder ).join(
"") === expando;
2562 support.detectDuplicates = !!hasDuplicate;
2569 support.sortDetached = assert(
function( div1 ) {
2571 return div1.compareDocumentPosition( document.createElement(
"div") ) & 1;
2577 if ( !assert(
function( div ) {
2578 div.innerHTML =
"<a href='#'></a>";
2579 return div.firstChild.getAttribute(
"href") ===
"#" ;
2581 addHandle(
"type|href|height|width",
function( elem, name, isXML ) {
2583 return elem.getAttribute( name, name.toLowerCase() ===
"type" ? 1 : 2 );
2590 if ( !support.attributes || !assert(
function( div ) {
2591 div.innerHTML =
"<input/>";
2592 div.firstChild.setAttribute(
"value",
"" );
2593 return div.firstChild.getAttribute(
"value" ) ===
"";
2595 addHandle(
"value",
function( elem, name, isXML ) {
2596 if ( !isXML && elem.nodeName.toLowerCase() ===
"input" ) {
2597 return elem.defaultValue;
2604 if ( !assert(
function( div ) {
2605 return div.getAttribute(
"disabled") == null;
2607 addHandle( booleans,
function( elem, name, isXML ) {
2610 return elem[ name ] ===
true ? name.toLowerCase() :
2611 (val = elem.getAttributeNode( name )) && val.specified ?
2624 jQuery.find = Sizzle;
2625 jQuery.expr = Sizzle.selectors;
2626 jQuery.expr[
":"] = jQuery.expr.pseudos;
2627 jQuery.unique = Sizzle.uniqueSort;
2628 jQuery.text = Sizzle.getText;
2629 jQuery.isXMLDoc = Sizzle.isXML;
2630 jQuery.contains = Sizzle.contains;
2634 var rneedsContext = jQuery.expr.match.needsContext;
2636 var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
2640 var risSimple = /^.[^:#\[\.,]*$/;
2643 function winnow( elements, qualifier, not ) {
2644 if ( jQuery.isFunction( qualifier ) ) {
2645 return jQuery.grep( elements,
function( elem, i ) {
2647 return !!qualifier.call( elem, i, elem ) !== not;
2652 if ( qualifier.nodeType ) {
2653 return jQuery.grep( elements,
function( elem ) {
2654 return ( elem === qualifier ) !== not;
2659 if ( typeof qualifier ===
"string" ) {
2660 if ( risSimple.test( qualifier ) ) {
2661 return jQuery.filter( qualifier, elements, not );
2664 qualifier = jQuery.filter( qualifier, elements );
2667 return jQuery.grep( elements,
function( elem ) {
2668 return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;
2672 jQuery.filter =
function( expr, elems, not ) {
2673 var elem = elems[ 0 ];
2676 expr =
":not(" + expr +
")";
2679 return elems.length === 1 && elem.nodeType === 1 ?
2680 jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
2681 jQuery.find.matches( expr, jQuery.grep( elems,
function( elem ) {
2682 return elem.nodeType === 1;
2687 find:
function( selector ) {
2693 if ( typeof selector !==
"string" ) {
2694 return this.pushStack( jQuery( selector ).filter(
function() {
2695 for ( i = 0; i < len; i++ ) {
2696 if ( jQuery.contains(
self[ i ],
this ) ) {
2703 for ( i = 0; i < len; i++ ) {
2704 jQuery.find( selector,
self[ i ], ret );
2708 ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
2709 ret.selector = this.selector ? this.selector +
" " + selector : selector;
2712 filter:
function( selector ) {
2713 return this.pushStack( winnow(
this, selector || [],
false) );
2715 not:
function( selector ) {
2716 return this.pushStack( winnow(
this, selector || [],
true) );
2718 is:
function( selector ) {
2724 typeof selector ===
"string" && rneedsContext.test( selector ) ?
2725 jQuery( selector ) :
2740 document = window.document,
2745 rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
2747 init = jQuery.fn.init =
function( selector, context ) {
2756 if ( typeof selector ===
"string" ) {
2757 if ( selector.charAt(0) ===
"<" && selector.charAt( selector.length - 1 ) ===
">" && selector.length >= 3 ) {
2759 match = [ null, selector, null ];
2762 match = rquickExpr.exec( selector );
2766 if ( match && (match[1] || !context) ) {
2770 context = context instanceof jQuery ? context[0] : context;
2774 jQuery.merge(
this, jQuery.parseHTML(
2776 context && context.nodeType ? context.ownerDocument || context : document,
2781 if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
2782 for ( match in context ) {
2784 if ( jQuery.isFunction(
this[ match ] ) ) {
2785 this[ match ]( context[ match ] );
2789 this.attr( match, context[ match ] );
2798 elem = document.getElementById( match[2] );
2802 if ( elem && elem.parentNode ) {
2805 if ( elem.id !== match[2] ) {
2806 return rootjQuery.find( selector );
2814 this.context = document;
2815 this.selector = selector;
2820 }
else if ( !context || context.jquery ) {
2821 return ( context || rootjQuery ).find( selector );
2826 return this.constructor( context ).find( selector );
2830 }
else if ( selector.nodeType ) {
2831 this.context =
this[0] = selector;
2837 }
else if ( jQuery.isFunction( selector ) ) {
2838 return typeof rootjQuery.ready !==
"undefined" ?
2839 rootjQuery.ready( selector ) :
2844 if ( selector.selector !== undefined ) {
2845 this.selector = selector.selector;
2846 this.context = selector.context;
2849 return jQuery.makeArray( selector,
this );
2853 init.prototype = jQuery.fn;
2856 rootjQuery = jQuery( document );
2859 var rparentsprev = /^(?:parents|prev(?:Until|All))/,
2861 guaranteedUnique = {
2869 dir:
function( elem, dir, until ) {
2873 while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
2874 if ( cur.nodeType === 1 ) {
2875 matched.push( cur );
2882 sibling:
function( n, elem ) {
2885 for ( ; n; n = n.nextSibling ) {
2886 if ( n.nodeType === 1 && n !== elem ) {
2896 has:
function( target ) {
2898 targets = jQuery( target,
this ),
2899 len = targets.length;
2901 return this.filter(
function() {
2902 for ( i = 0; i < len; i++ ) {
2903 if ( jQuery.contains(
this, targets[i] ) ) {
2910 closest:
function( selectors, context ) {
2915 pos = rneedsContext.test( selectors ) || typeof selectors !==
"string" ?
2916 jQuery( selectors, context || this.context ) :
2919 for ( ; i < l; i++ ) {
2920 for ( cur =
this[i]; cur && cur !== context; cur = cur.parentNode ) {
2922 if ( cur.nodeType < 11 && (pos ?
2923 pos.index(cur) > -1 :
2926 cur.nodeType === 1 &&
2927 jQuery.find.matchesSelector(cur, selectors)) ) {
2929 matched.push( cur );
2935 return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
2940 index:
function( elem ) {
2944 return (
this[0] &&
this[0].parentNode ) ? this.first().prevAll().length : -1;
2948 if ( typeof elem ===
"string" ) {
2949 return jQuery.inArray(
this[0], jQuery( elem ) );
2953 return jQuery.inArray(
2955 elem.jquery ? elem[0] : elem,
this );
2958 add:
function( selector, context ) {
2959 return this.pushStack(
2961 jQuery.merge(
this.get(), jQuery( selector, context ) )
2966 addBack:
function( selector ) {
2967 return this.
add( selector == null ?
2968 this.prevObject : this.prevObject.filter(selector)
2973 function sibling( cur, dir ) {
2976 }
while ( cur && cur.nodeType !== 1 );
2982 parent:
function( elem ) {
2983 var parent = elem.parentNode;
2984 return parent && parent.nodeType !== 11 ? parent : null;
2986 parents:
function( elem ) {
2987 return jQuery.dir( elem,
"parentNode" );
2989 parentsUntil:
function( elem, i, until ) {
2990 return jQuery.dir( elem,
"parentNode", until );
2992 next:
function( elem ) {
2993 return sibling( elem,
"nextSibling" );
2995 prev:
function( elem ) {
2996 return sibling( elem,
"previousSibling" );
2998 nextAll:
function( elem ) {
2999 return jQuery.dir( elem,
"nextSibling" );
3001 prevAll:
function( elem ) {
3002 return jQuery.dir( elem,
"previousSibling" );
3004 nextUntil:
function( elem, i, until ) {
3005 return jQuery.dir( elem,
"nextSibling", until );
3007 prevUntil:
function( elem, i, until ) {
3008 return jQuery.dir( elem,
"previousSibling", until );
3010 siblings:
function( elem ) {
3011 return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
3013 children:
function( elem ) {
3014 return jQuery.sibling( elem.firstChild );
3016 contents:
function( elem ) {
3017 return jQuery.nodeName( elem,
"iframe" ) ?
3018 elem.contentDocument || elem.contentWindow.document :
3019 jQuery.merge( [], elem.childNodes );
3021 },
function( name, fn ) {
3022 jQuery.fn[ name ] =
function( until, selector ) {
3023 var ret = jQuery.map(
this, fn, until );
3025 if ( name.slice( -5 ) !==
"Until" ) {
3029 if ( selector && typeof selector ===
"string" ) {
3030 ret = jQuery.filter( selector, ret );
3033 if ( this.length > 1 ) {
3035 if ( !guaranteedUnique[ name ] ) {
3036 ret = jQuery.unique( ret );
3040 if ( rparentsprev.test( name ) ) {
3041 ret = ret.reverse();
3045 return this.pushStack( ret );
3048 var rnotwhite = (/\S+/g);
3053 var optionsCache = {};
3056 function createOptions( options ) {
3057 var
object = optionsCache[ options ] = {};
3058 jQuery.each( options.match( rnotwhite ) || [],
function( _, flag ) {
3059 object[ flag ] =
true;
3086 jQuery.Callbacks =
function( options ) {
3090 options = typeof options ===
"string" ?
3091 ( optionsCache[ options ] || createOptions( options ) ) :
3092 jQuery.extend( {}, options );
3109 stack = !options.once && [],
3111 fire =
function( data ) {
3112 memory = options.memory && data;
3114 firingIndex = firingStart || 0;
3116 firingLength = list.length;
3118 for ( ; list && firingIndex < firingLength; firingIndex++ ) {
3119 if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) ===
false && options.stopOnFalse ) {
3127 if ( stack.length ) {
3128 fire( stack.shift() );
3130 }
else if ( memory ) {
3143 var start = list.length;
3144 (
function add( args ) {
3145 jQuery.each( args,
function( _, arg ) {
3146 var type = jQuery.type( arg );
3147 if ( type ===
"function" ) {
3148 if ( !options.unique || !
self.has( arg ) ) {
3151 }
else if ( arg && arg.length && type !==
"string" ) {
3160 firingLength = list.length;
3163 }
else if ( memory ) {
3164 firingStart = start;
3171 remove:
function() {
3173 jQuery.each( arguments,
function( _, arg ) {
3175 while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
3176 list.splice( index, 1 );
3179 if ( index <= firingLength ) {
3182 if ( index <= firingIndex ) {
3193 has:
function( fn ) {
3194 return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
3203 disable:
function() {
3204 list = stack = memory = undefined;
3208 disabled:
function() {
3220 locked:
function() {
3224 fireWith:
function( context, args ) {
3225 if ( list && ( !fired || stack ) ) {
3227 args = [ context, args.slice ? args.slice() : args ];
3238 self.fireWith(
this, arguments );
3253 Deferred:
function( func ) {
3256 [
"resolve",
"done", jQuery.Callbacks(
"once memory"),
"resolved" ],
3257 [
"reject",
"fail", jQuery.Callbacks(
"once memory"),
"rejected" ],
3258 [
"notify",
"progress", jQuery.Callbacks(
"memory") ]
3265 always:
function() {
3266 deferred.done( arguments ).fail( arguments );
3270 var fns = arguments;
3271 return jQuery.Deferred(
function( newDefer ) {
3272 jQuery.each( tuples,
function( i, tuple ) {
3273 var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
3275 deferred[ tuple[1] ](
function() {
3276 var returned = fn && fn.apply(
this, arguments );
3277 if ( returned && jQuery.isFunction( returned.promise ) ) {
3279 .done( newDefer.resolve )
3280 .fail( newDefer.reject )
3281 .progress( newDefer.notify );
3283 newDefer[ tuple[ 0 ] +
"With" ](
this === promise ? newDefer.promise() :
this, fn ? [ returned ] : arguments );
3292 promise:
function( obj ) {
3293 return obj != null ? jQuery.extend( obj, promise ) : promise;
3299 promise.pipe = promise.then;
3302 jQuery.each( tuples,
function( i, tuple ) {
3303 var list = tuple[ 2 ],
3304 stateString = tuple[ 3 ];
3307 promise[ tuple[1] ] = list.add;
3310 if ( stateString ) {
3311 list.add(
function() {
3313 state = stateString;
3316 }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
3320 deferred[ tuple[0] ] =
function() {
3321 deferred[ tuple[0] +
"With" ](
this === deferred ? promise :
this, arguments );
3324 deferred[ tuple[0] +
"With" ] = list.fireWith;
3328 promise.promise( deferred );
3332 func.call( deferred, deferred );
3340 when:
function( subordinate ) {
3342 resolveValues = slice.call( arguments ),
3343 length = resolveValues.length,
3346 remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
3349 deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
3352 updateFunc =
function( i, contexts, values ) {
3353 return function( value ) {
3354 contexts[ i ] =
this;
3355 values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
3356 if ( values === progressValues ) {
3357 deferred.notifyWith( contexts, values );
3359 }
else if ( !(--remaining) ) {
3360 deferred.resolveWith( contexts, values );
3365 progressValues, progressContexts, resolveContexts;
3369 progressValues =
new Array( length );
3370 progressContexts =
new Array( length );
3371 resolveContexts =
new Array( length );
3372 for ( ; i < length; i++ ) {
3373 if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
3374 resolveValues[ i ].promise()
3375 .done( updateFunc( i, resolveContexts, resolveValues ) )
3376 .fail( deferred.reject )
3377 .progress( updateFunc( i, progressContexts, progressValues ) );
3386 deferred.resolveWith( resolveContexts, resolveValues );
3389 return deferred.promise();
3397 jQuery.fn.ready =
function( fn ) {
3399 jQuery.ready.promise().done( fn );
3413 holdReady:
function( hold ) {
3417 jQuery.ready(
true );
3422 ready:
function( wait ) {
3425 if ( wait ===
true ? --jQuery.readyWait : jQuery.isReady ) {
3430 if ( !document.body ) {
3431 return setTimeout( jQuery.ready );
3435 jQuery.isReady =
true;
3438 if ( wait !==
true && --jQuery.readyWait > 0 ) {
3443 readyList.resolveWith( document, [ jQuery ] );
3446 if ( jQuery.fn.triggerHandler ) {
3447 jQuery( document ).triggerHandler(
"ready" );
3448 jQuery( document ).off(
"ready" );
3457 if ( document.addEventListener ) {
3458 document.removeEventListener(
"DOMContentLoaded", completed,
false );
3459 window.removeEventListener(
"load", completed,
false );
3462 document.detachEvent(
"onreadystatechange", completed );
3463 window.detachEvent(
"onload", completed );
3470 function completed() {
3472 if ( document.addEventListener || event.type ===
"load" || document.readyState ===
"complete" ) {
3478 jQuery.ready.promise =
function( obj ) {
3481 readyList = jQuery.Deferred();
3486 if ( document.readyState ===
"complete" ) {
3488 setTimeout( jQuery.ready );
3491 }
else if ( document.addEventListener ) {
3493 document.addEventListener(
"DOMContentLoaded", completed,
false );
3496 window.addEventListener(
"load", completed,
false );
3501 document.attachEvent(
"onreadystatechange", completed );
3504 window.attachEvent(
"onload", completed );
3511 top = window.frameElement == null && document.documentElement;
3514 if ( top && top.doScroll ) {
3515 (
function doScrollCheck() {
3516 if ( !jQuery.isReady ) {
3521 top.doScroll(
"left");
3523 return setTimeout( doScrollCheck, 50 );
3536 return readyList.promise( obj );
3540 var strundefined = typeof undefined;
3547 for ( i in jQuery( support ) ) {
3550 support.ownLast = i !==
"0";
3554 support.inlineBlockNeedsLayout =
false;
3559 var val, div, body, container;
3561 body = document.getElementsByTagName(
"body" )[ 0 ];
3562 if ( !body || !body.style ) {
3568 div = document.createElement(
"div" );
3569 container = document.createElement(
"div" );
3570 container.style.cssText =
"position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
3571 body.appendChild( container ).appendChild( div );
3573 if ( typeof div.style.zoom !== strundefined ) {
3578 div.style.cssText =
"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1";
3580 support.inlineBlockNeedsLayout = val = div.offsetWidth === 3;
3585 body.style.zoom = 1;
3589 body.removeChild( container );
3596 var div = document.createElement(
"div" );
3599 if (support.deleteExpando == null) {
3601 support.deleteExpando =
true;
3605 support.deleteExpando =
false;
3617 jQuery.acceptData =
function( elem ) {
3618 var noData = jQuery.noData[ (elem.nodeName +
" ").toLowerCase() ],
3619 nodeType = +elem.nodeType || 1;
3622 return nodeType !== 1 && nodeType !== 9 ?
3626 !noData || noData !==
true && elem.getAttribute(
"classid") === noData;
3630 var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
3631 rmultiDash = /([A-Z])/g;
3633 function dataAttr( elem, key, data ) {
3636 if ( data === undefined && elem.nodeType === 1 ) {
3638 var name =
"data-" + key.replace( rmultiDash,
"-$1" ).toLowerCase();
3640 data = elem.getAttribute( name );
3642 if ( typeof data ===
"string" ) {
3644 data = data ===
"true" ?
true :
3645 data ===
"false" ?
false :
3646 data ===
"null" ? null :
3648 +data +
"" === data ? +data :
3649 rbrace.test( data ) ? jQuery.parseJSON( data ) :
3654 jQuery.data( elem, key, data );
3665 function isEmptyDataObject( obj ) {
3667 for ( name in obj ) {
3670 if ( name ===
"data" && jQuery.isEmptyObject( obj[name] ) ) {
3673 if ( name !==
"toJSON" ) {
3681 function internalData( elem, name, data, pvt ) {
3682 if ( !jQuery.acceptData( elem ) ) {
3687 internalKey = jQuery.expando,
3691 isNode = elem.nodeType,
3695 cache = isNode ? jQuery.cache : elem,
3699 id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;
3703 if ( (!
id || !cache[
id] || (!pvt && !cache[
id].data)) && data === undefined && typeof name ===
"string" ) {
3711 id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;
3717 if ( !cache[
id ] ) {
3720 cache[ id ] = isNode ? {} : { toJSON: jQuery.noop };
3725 if ( typeof name ===
"object" || typeof name ===
"function" ) {
3727 cache[ id ] = jQuery.extend( cache[
id ], name );
3729 cache[ id ].data = jQuery.extend( cache[
id ].data, name );
3733 thisCache = cache[ id ];
3739 if ( !thisCache.data ) {
3740 thisCache.data = {};
3743 thisCache = thisCache.data;
3746 if ( data !== undefined ) {
3747 thisCache[ jQuery.camelCase( name ) ] = data;
3752 if ( typeof name ===
"string" ) {
3755 ret = thisCache[ name ];
3758 if ( ret == null ) {
3761 ret = thisCache[ jQuery.camelCase( name ) ];
3770 function internalRemoveData( elem, name, pvt ) {
3771 if ( !jQuery.acceptData( elem ) ) {
3776 isNode = elem.nodeType,
3779 cache = isNode ? jQuery.cache : elem,
3780 id = isNode ? elem[ jQuery.expando ] : jQuery.expando;
3784 if ( !cache[
id ] ) {
3790 thisCache = pvt ? cache[ id ] : cache[ id ].data;
3795 if ( !jQuery.isArray( name ) ) {
3798 if ( name in thisCache ) {
3803 name = jQuery.camelCase( name );
3804 if ( name in thisCache ) {
3807 name = name.split(
" ");
3817 name = name.concat( jQuery.map( name, jQuery.camelCase ) );
3822 delete thisCache[ name[i] ];
3827 if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {
3835 delete cache[ id ].data;
3839 if ( !isEmptyDataObject( cache[
id ] ) ) {
3846 jQuery.cleanData( [ elem ],
true );
3850 }
else if ( support.deleteExpando || cache != cache.window ) {
3869 "object ":
"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 3872 hasData:
function( elem ) {
3873 elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
3874 return !!elem && !isEmptyDataObject( elem );
3877 data:
function( elem, name, data ) {
3878 return internalData( elem, name, data );
3881 removeData:
function( elem, name ) {
3882 return internalRemoveData( elem, name );
3886 _data:
function( elem, name, data ) {
3887 return internalData( elem, name, data,
true );
3890 _removeData:
function( elem, name ) {
3891 return internalRemoveData( elem, name,
true );
3896 data:
function( key, value ) {
3899 attrs = elem && elem.attributes;
3905 if ( key === undefined ) {
3906 if ( this.length ) {
3907 data = jQuery.data( elem );
3909 if ( elem.nodeType === 1 && !jQuery._data( elem,
"parsedAttrs" ) ) {
3916 name = attrs[ i ].name;
3917 if ( name.indexOf(
"data-" ) === 0 ) {
3918 name = jQuery.camelCase( name.slice(5) );
3919 dataAttr( elem, name, data[ name ] );
3923 jQuery._data( elem,
"parsedAttrs",
true );
3931 if ( typeof key ===
"object" ) {
3932 return this.each(
function() {
3933 jQuery.data(
this, key );
3937 return arguments.length > 1 ?
3940 this.each(
function() {
3941 jQuery.data(
this, key, value );
3946 elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;
3949 removeData:
function( key ) {
3950 return this.each(
function() {
3951 jQuery.removeData(
this, key );
3958 queue:
function( elem, type, data ) {
3962 type = ( type ||
"fx" ) +
"queue";
3963 queue = jQuery._data( elem, type );
3967 if ( !queue || jQuery.isArray(data) ) {
3968 queue = jQuery._data( elem, type, jQuery.makeArray(data) );
3977 dequeue:
function( elem, type ) {
3978 type = type ||
"fx";
3980 var queue = jQuery.queue( elem, type ),
3981 startLength = queue.length,
3983 hooks = jQuery._queueHooks( elem, type ),
3985 jQuery.dequeue( elem, type );
3989 if ( fn ===
"inprogress" ) {
3998 if ( type ===
"fx" ) {
3999 queue.unshift(
"inprogress" );
4004 fn.call( elem, next, hooks );
4007 if ( !startLength && hooks ) {
4013 _queueHooks:
function( elem, type ) {
4014 var key = type +
"queueHooks";
4015 return jQuery._data( elem, key ) || jQuery._data( elem, key, {
4016 empty: jQuery.Callbacks(
"once memory").add(
function() {
4017 jQuery._removeData( elem, type +
"queue" );
4018 jQuery._removeData( elem, key );
4025 queue:
function( type, data ) {
4028 if ( typeof type !==
"string" ) {
4034 if ( arguments.length < setter ) {
4035 return jQuery.queue(
this[0], type );
4038 return data === undefined ?
4040 this.each(
function() {
4041 var queue = jQuery.queue(
this, type, data );
4044 jQuery._queueHooks(
this, type );
4046 if ( type ===
"fx" && queue[0] !==
"inprogress" ) {
4047 jQuery.dequeue(
this, type );
4051 dequeue:
function( type ) {
4052 return this.each(
function() {
4053 jQuery.dequeue(
this, type );
4056 clearQueue:
function( type ) {
4057 return this.queue( type ||
"fx", [] );
4061 promise:
function( type, obj ) {
4064 defer = jQuery.Deferred(),
4067 resolve =
function() {
4068 if ( !( --count ) ) {
4069 defer.resolveWith( elements, [ elements ] );
4073 if ( typeof type !==
"string" ) {
4077 type = type ||
"fx";
4080 tmp = jQuery._data( elements[ i ], type +
"queueHooks" );
4081 if ( tmp && tmp.empty ) {
4083 tmp.empty.add( resolve );
4087 return defer.promise( obj );
4090 var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
4092 var cssExpand = [
"Top",
"Right",
"Bottom",
"Left" ];
4094 var isHidden =
function( elem, el ) {
4098 return jQuery.css( elem,
"display" ) ===
"none" || !jQuery.contains( elem.ownerDocument, elem );
4105 var access = jQuery.access =
function( elems, fn, key, value, chainable, emptyGet, raw ) {
4107 length = elems.length,
4111 if ( jQuery.type( key ) ===
"object" ) {
4114 jQuery.access( elems, fn, i, key[i],
true, emptyGet, raw );
4118 }
else if ( value !== undefined ) {
4121 if ( !jQuery.isFunction( value ) ) {
4128 fn.call( elems, value );
4134 fn =
function( elem, key, value ) {
4135 return bulk.call( jQuery( elem ), value );
4141 for ( ; i < length; i++ ) {
4142 fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
4153 length ? fn( elems[0], key ) : emptyGet;
4155 var rcheckableType = (/^(?:checkbox|radio)$/i);
4161 var input = document.createElement(
"input" ),
4162 div = document.createElement(
"div" ),
4163 fragment = document.createDocumentFragment();
4166 div.innerHTML =
" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
4169 support.leadingWhitespace = div.firstChild.nodeType === 3;
4173 support.tbody = !div.getElementsByTagName(
"tbody" ).length;
4177 support.htmlSerialize = !!div.getElementsByTagName(
"link" ).length;
4181 support.html5Clone =
4182 document.createElement(
"nav" ).cloneNode(
true ).outerHTML !==
"<:nav></:nav>";
4186 input.type =
"checkbox";
4187 input.checked =
true;
4188 fragment.appendChild( input );
4189 support.appendChecked = input.checked;
4193 div.innerHTML =
"<textarea>x</textarea>";
4194 support.noCloneChecked = !!div.cloneNode(
true ).lastChild.defaultValue;
4197 fragment.appendChild( div );
4198 div.innerHTML =
"<input type='radio' checked='checked' name='t'/>";
4202 support.checkClone = div.cloneNode(
true ).cloneNode(
true ).lastChild.checked;
4207 support.noCloneEvent =
true;
4208 if ( div.attachEvent ) {
4209 div.attachEvent(
"onclick",
function() {
4210 support.noCloneEvent =
false;
4213 div.cloneNode(
true ).click();
4217 if (support.deleteExpando == null) {
4219 support.deleteExpando =
true;
4223 support.deleteExpando =
false;
4231 div = document.createElement(
"div" );
4234 for ( i in { submit:
true, change:
true, focusin:
true }) {
4235 eventName =
"on" + i;
4237 if ( !(support[ i +
"Bubbles" ] = eventName in window) ) {
4239 div.setAttribute( eventName,
"t" );
4240 support[ i +
"Bubbles" ] = div.attributes[ eventName ].expando ===
false;
4249 var rformElems = /^(?:input|select|textarea)$/i,
4251 rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,
4252 rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
4253 rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
4255 function returnTrue() {
4259 function returnFalse() {
4263 function safeActiveElement() {
4265 return document.activeElement;
4277 add:
function( elem, types, handler, data, selector ) {
4278 var tmp, events, t, handleObjIn,
4279 special, eventHandle, handleObj,
4280 handlers, type, namespaces, origType,
4281 elemData = jQuery._data( elem );
4289 if ( handler.handler ) {
4290 handleObjIn = handler;
4291 handler = handleObjIn.handler;
4292 selector = handleObjIn.selector;
4296 if ( !handler.guid ) {
4297 handler.guid = jQuery.guid++;
4301 if ( !(events = elemData.events) ) {
4302 events = elemData.events = {};
4304 if ( !(eventHandle = elemData.handle) ) {
4305 eventHandle = elemData.handle =
function( e ) {
4308 return typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?
4309 jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
4313 eventHandle.elem = elem;
4317 types = ( types ||
"" ).match( rnotwhite ) || [
"" ];
4320 tmp = rtypenamespace.exec( types[t] ) || [];
4321 type = origType = tmp[1];
4322 namespaces = ( tmp[2] ||
"" ).split(
"." ).sort();
4330 special = jQuery.event.special[ type ] || {};
4333 type = ( selector ? special.delegateType : special.bindType ) || type;
4336 special = jQuery.event.special[ type ] || {};
4339 handleObj = jQuery.extend({
4346 needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
4347 namespace: namespaces.join(
".")
4351 if ( !(handlers = events[ type ]) ) {
4352 handlers = events[ type ] = [];
4353 handlers.delegateCount = 0;
4356 if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
4358 if ( elem.addEventListener ) {
4359 elem.addEventListener( type, eventHandle,
false );
4361 }
else if ( elem.attachEvent ) {
4362 elem.attachEvent(
"on" + type, eventHandle );
4367 if ( special.add ) {
4368 special.add.call( elem, handleObj );
4370 if ( !handleObj.handler.guid ) {
4371 handleObj.handler.guid = handler.guid;
4377 handlers.splice( handlers.delegateCount++, 0, handleObj );
4379 handlers.push( handleObj );
4383 jQuery.event.global[ type ] =
true;
4391 remove:
function( elem, types, handler, selector, mappedTypes ) {
4392 var j, handleObj, tmp,
4393 origCount, t, events,
4394 special, handlers, type,
4395 namespaces, origType,
4396 elemData = jQuery.hasData( elem ) && jQuery._data( elem );
4398 if ( !elemData || !(events = elemData.events) ) {
4403 types = ( types ||
"" ).match( rnotwhite ) || [
"" ];
4406 tmp = rtypenamespace.exec( types[t] ) || [];
4407 type = origType = tmp[1];
4408 namespaces = ( tmp[2] ||
"" ).split(
"." ).sort();
4412 for ( type in events ) {
4413 jQuery.event.remove( elem, type + types[ t ], handler, selector,
true );
4418 special = jQuery.event.special[ type ] || {};
4419 type = ( selector ? special.delegateType : special.bindType ) || type;
4420 handlers = events[ type ] || [];
4421 tmp = tmp[2] &&
new RegExp(
"(^|\\.)" + namespaces.join(
"\\.(?:.*\\.|)") +
"(\\.|$)" );
4424 origCount = j = handlers.length;
4426 handleObj = handlers[ j ];
4428 if ( ( mappedTypes || origType === handleObj.origType ) &&
4429 ( !handler || handler.guid === handleObj.guid ) &&
4430 ( !tmp || tmp.test( handleObj.namespace ) ) &&
4431 ( !selector || selector === handleObj.selector || selector ===
"**" && handleObj.selector ) ) {
4432 handlers.splice( j, 1 );
4434 if ( handleObj.selector ) {
4435 handlers.delegateCount--;
4437 if ( special.remove ) {
4438 special.remove.call( elem, handleObj );
4445 if ( origCount && !handlers.length ) {
4446 if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
4447 jQuery.removeEvent( elem, type, elemData.handle );
4450 delete events[ type ];
4455 if ( jQuery.isEmptyObject( events ) ) {
4456 delete elemData.handle;
4460 jQuery._removeData( elem,
"events" );
4464 trigger:
function( event, data, elem, onlyHandlers ) {
4465 var handle, ontype, cur,
4466 bubbleType, special, tmp, i,
4467 eventPath = [ elem || document ],
4468 type = hasOwn.call( event,
"type" ) ?
event.type : event,
4469 namespaces = hasOwn.call( event,
"namespace" ) ?
event.namespace.split(
".") : [];
4471 cur = tmp = elem = elem || document;
4474 if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
4479 if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
4483 if ( type.indexOf(
".") >= 0 ) {
4485 namespaces = type.split(
".");
4486 type = namespaces.shift();
4489 ontype = type.indexOf(
":") < 0 &&
"on" + type;
4492 event =
event[ jQuery.expando ] ?
4494 new jQuery.Event( type, typeof event ===
"object" && event );
4497 event.isTrigger = onlyHandlers ? 2 : 3;
4498 event.namespace = namespaces.join(
".");
4499 event.namespace_re =
event.namespace ?
4500 new RegExp(
"(^|\\.)" + namespaces.join(
"\\.(?:.*\\.|)") +
"(\\.|$)" ) :
4504 event.result = undefined;
4505 if ( !event.target ) {
4506 event.target = elem;
4510 data = data == null ?
4512 jQuery.makeArray( data, [ event ] );
4515 special = jQuery.event.special[ type ] || {};
4516 if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
4522 if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
4524 bubbleType = special.delegateType || type;
4525 if ( !rfocusMorph.test( bubbleType + type ) ) {
4526 cur = cur.parentNode;
4528 for ( ; cur; cur = cur.parentNode ) {
4529 eventPath.push( cur );
4534 if ( tmp === (elem.ownerDocument || document) ) {
4535 eventPath.push( tmp.defaultView || tmp.parentWindow || window );
4541 while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
4543 event.type = i > 1 ?
4545 special.bindType || type;
4548 handle = ( jQuery._data( cur,
"events" ) || {} )[ event.type ] && jQuery._data( cur,
"handle" );
4550 handle.apply( cur, data );
4554 handle = ontype && cur[ ontype ];
4555 if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
4556 event.result = handle.apply( cur, data );
4557 if ( event.result ===
false ) {
4558 event.preventDefault();
4565 if ( !onlyHandlers && !event.isDefaultPrevented() ) {
4567 if ( (!special._default || special._default.apply( eventPath.pop(), data ) ===
false) &&
4568 jQuery.acceptData( elem ) ) {
4573 if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {
4576 tmp = elem[ ontype ];
4579 elem[ ontype ] = null;
4583 jQuery.event.triggered = type;
4590 jQuery.event.triggered = undefined;
4593 elem[ ontype ] = tmp;
4599 return event.result;
4602 dispatch:
function( event ) {
4605 event = jQuery.event.fix( event );
4607 var i, ret, handleObj, matched, j,
4609 args = slice.call( arguments ),
4610 handlers = ( jQuery._data(
this,
"events" ) || {} )[ event.type ] || [],
4611 special = jQuery.event.special[ event.type ] || {};
4615 event.delegateTarget =
this;
4618 if ( special.preDispatch && special.preDispatch.call(
this, event ) === false ) {
4623 handlerQueue = jQuery.event.handlers.call(
this, event, handlers );
4627 while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
4628 event.currentTarget = matched.elem;
4631 while ( (handleObj = matched.handlers[ j++ ]) && !
event.isImmediatePropagationStopped() ) {
4635 if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
4637 event.handleObj = handleObj;
4638 event.data = handleObj.data;
4640 ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
4641 .apply( matched.elem, args );
4643 if ( ret !== undefined ) {
4644 if ( (event.result = ret) ===
false ) {
4645 event.preventDefault();
4646 event.stopPropagation();
4654 if ( special.postDispatch ) {
4655 special.postDispatch.call(
this, event );
4658 return event.result;
4661 handlers:
function( event, handlers ) {
4662 var sel, handleObj, matches, i,
4664 delegateCount = handlers.delegateCount,
4670 if ( delegateCount && cur.nodeType && (!event.button || event.type !==
"click") ) {
4673 for ( ; cur !=
this; cur = cur.parentNode || this ) {
4678 if ( cur.nodeType === 1 && (cur.disabled !==
true || event.type !==
"click") ) {
4680 for ( i = 0; i < delegateCount; i++ ) {
4681 handleObj = handlers[ i ];
4684 sel = handleObj.selector +
" ";
4686 if ( matches[ sel ] === undefined ) {
4687 matches[ sel ] = handleObj.needsContext ?
4688 jQuery( sel,
this ).index( cur ) >= 0 :
4689 jQuery.find( sel,
this, null, [ cur ] ).length;
4691 if ( matches[ sel ] ) {
4692 matches.push( handleObj );
4695 if ( matches.length ) {
4696 handlerQueue.push({ elem: cur, handlers: matches });
4703 if ( delegateCount < handlers.length ) {
4704 handlerQueue.push({ elem:
this, handlers: handlers.slice( delegateCount ) });
4707 return handlerQueue;
4710 fix:
function( event ) {
4711 if ( event[ jQuery.expando ] ) {
4718 originalEvent = event,
4719 fixHook = this.fixHooks[ type ];
4722 this.fixHooks[ type ] = fixHook =
4723 rmouseEvent.test( type ) ? this.mouseHooks :
4724 rkeyEvent.test( type ) ? this.keyHooks :
4727 copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
4729 event =
new jQuery.Event( originalEvent );
4734 event[ prop ] = originalEvent[ prop ];
4739 if ( !event.target ) {
4740 event.target = originalEvent.srcElement || document;
4745 if ( event.target.nodeType === 3 ) {
4746 event.target =
event.target.parentNode;
4751 event.metaKey = !!
event.metaKey;
4753 return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
4757 props:
"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(
" "),
4762 props:
"char charCode key keyCode".split(
" "),
4763 filter:
function( event, original ) {
4766 if ( event.which == null ) {
4767 event.which = original.charCode != null ? original.charCode : original.keyCode;
4775 props:
"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(
" "),
4776 filter:
function( event, original ) {
4777 var body, eventDoc, doc,
4778 button = original.button,
4779 fromElement = original.fromElement;
4782 if ( event.pageX == null && original.clientX != null ) {
4783 eventDoc =
event.target.ownerDocument || document;
4784 doc = eventDoc.documentElement;
4785 body = eventDoc.body;
4787 event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
4788 event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
4792 if ( !event.relatedTarget && fromElement ) {
4793 event.relatedTarget = fromElement ===
event.target ? original.toElement : fromElement;
4798 if ( !event.which && button !== undefined ) {
4799 event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
4813 trigger:
function() {
4814 if (
this !== safeActiveElement() && this.focus ) {
4825 delegateType:
"focusin" 4828 trigger:
function() {
4829 if (
this === safeActiveElement() && this.blur ) {
4834 delegateType:
"focusout" 4838 trigger:
function() {
4839 if ( jQuery.nodeName(
this,
"input" ) && this.type ===
"checkbox" && this.click ) {
4846 _default:
function( event ) {
4847 return jQuery.nodeName( event.target,
"a" );
4852 postDispatch:
function( event ) {
4856 if ( event.result !== undefined && event.originalEvent ) {
4857 event.originalEvent.returnValue =
event.result;
4863 simulate:
function( type, elem, event, bubble ) {
4867 var e = jQuery.extend(
4877 jQuery.event.trigger( e, null, elem );
4879 jQuery.event.dispatch.call( elem, e );
4881 if ( e.isDefaultPrevented() ) {
4882 event.preventDefault();
4887 jQuery.removeEvent = document.removeEventListener ?
4888 function( elem, type, handle ) {
4889 if ( elem.removeEventListener ) {
4890 elem.removeEventListener( type, handle,
false );
4893 function( elem, type, handle ) {
4894 var name =
"on" + type;
4896 if ( elem.detachEvent ) {
4900 if ( typeof elem[ name ] === strundefined ) {
4901 elem[ name ] = null;
4904 elem.detachEvent( name, handle );
4908 jQuery.Event =
function( src, props ) {
4910 if ( !(
this instanceof jQuery.Event) ) {
4911 return new jQuery.Event( src, props );
4915 if ( src && src.type ) {
4916 this.originalEvent = src;
4917 this.type = src.type;
4921 this.isDefaultPrevented = src.defaultPrevented ||
4922 src.defaultPrevented === undefined &&
4924 src.returnValue ===
false ?
4935 jQuery.extend(
this, props );
4939 this.timeStamp = src && src.timeStamp || jQuery.now();
4942 this[ jQuery.expando ] =
true;
4947 jQuery.Event.prototype = {
4948 isDefaultPrevented: returnFalse,
4949 isPropagationStopped: returnFalse,
4950 isImmediatePropagationStopped: returnFalse,
4952 preventDefault:
function() {
4953 var e = this.originalEvent;
4955 this.isDefaultPrevented = returnTrue;
4961 if ( e.preventDefault ) {
4967 e.returnValue =
false;
4970 stopPropagation:
function() {
4971 var e = this.originalEvent;
4973 this.isPropagationStopped = returnTrue;
4978 if ( e.stopPropagation ) {
4979 e.stopPropagation();
4984 e.cancelBubble =
true;
4986 stopImmediatePropagation:
function() {
4987 var e = this.originalEvent;
4989 this.isImmediatePropagationStopped = returnTrue;
4991 if ( e && e.stopImmediatePropagation ) {
4992 e.stopImmediatePropagation();
4995 this.stopPropagation();
5001 mouseenter:
"mouseover",
5002 mouseleave:
"mouseout",
5003 pointerenter:
"pointerover",
5004 pointerleave:
"pointerout" 5005 },
function( orig, fix ) {
5006 jQuery.event.special[ orig ] = {
5010 handle:
function( event ) {
5013 related =
event.relatedTarget,
5014 handleObj =
event.handleObj;
5018 if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
5019 event.type = handleObj.origType;
5020 ret = handleObj.handler.apply(
this, arguments );
5029 if ( !support.submitBubbles ) {
5031 jQuery.event.special.submit = {
5034 if ( jQuery.nodeName(
this,
"form" ) ) {
5039 jQuery.event.add(
this,
"click._submit keypress._submit",
function( e ) {
5041 var elem = e.target,
5042 form = jQuery.nodeName( elem,
"input" ) || jQuery.nodeName( elem,
"button" ) ? elem.form : undefined;
5043 if ( form && !jQuery._data( form,
"submitBubbles" ) ) {
5044 jQuery.event.add( form,
"submit._submit",
function( event ) {
5045 event._submit_bubble =
true;
5047 jQuery._data( form,
"submitBubbles",
true );
5053 postDispatch:
function( event ) {
5055 if ( event._submit_bubble ) {
5056 delete event._submit_bubble;
5057 if ( this.parentNode && !event.isTrigger ) {
5058 jQuery.event.simulate(
"submit", this.parentNode, event,
true );
5063 teardown:
function() {
5065 if ( jQuery.nodeName(
this,
"form" ) ) {
5070 jQuery.event.remove(
this,
"._submit" );
5076 if ( !support.changeBubbles ) {
5078 jQuery.event.special.change = {
5082 if ( rformElems.test(
this.nodeName ) ) {
5086 if ( this.type ===
"checkbox" || this.type ===
"radio" ) {
5087 jQuery.event.add(
this,
"propertychange._change",
function( event ) {
5088 if ( event.originalEvent.propertyName ===
"checked" ) {
5089 this._just_changed = true;
5092 jQuery.event.add(
this,
"click._change",
function( event ) {
5093 if ( this._just_changed && !event.isTrigger ) {
5094 this._just_changed = false;
5097 jQuery.event.simulate(
"change",
this, event,
true );
5103 jQuery.event.add(
this,
"beforeactivate._change",
function( e ) {
5104 var elem = e.target;
5106 if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem,
"changeBubbles" ) ) {
5107 jQuery.event.add( elem,
"change._change",
function( event ) {
5108 if ( this.parentNode && !event.isSimulated && !event.isTrigger ) {
5109 jQuery.event.simulate(
"change", this.parentNode, event, true );
5112 jQuery._data( elem,
"changeBubbles",
true );
5117 handle:
function( event ) {
5118 var elem =
event.target;
5121 if (
this !== elem || event.isSimulated || event.isTrigger || (elem.type !==
"radio" && elem.type !==
"checkbox") ) {
5122 return event.handleObj.handler.apply(
this, arguments );
5126 teardown:
function() {
5127 jQuery.event.remove(
this,
"._change" );
5129 return !rformElems.test( this.nodeName );
5135 if ( !support.focusinBubbles ) {
5136 jQuery.each({ focus:
"focusin", blur:
"focusout" },
function( orig, fix ) {
5139 var handler =
function( event ) {
5140 jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
5143 jQuery.event.special[ fix ] = {
5145 var doc = this.ownerDocument ||
this,
5146 attaches = jQuery._data( doc, fix );
5149 doc.addEventListener( orig, handler,
true );
5151 jQuery._data( doc, fix, ( attaches || 0 ) + 1 );
5153 teardown:
function() {
5154 var doc = this.ownerDocument ||
this,
5155 attaches = jQuery._data( doc, fix ) - 1;
5158 doc.removeEventListener( orig, handler,
true );
5159 jQuery._removeData( doc, fix );
5161 jQuery._data( doc, fix, attaches );
5170 on:
function( types, selector, data, fn, one ) {
5174 if ( typeof types ===
"object" ) {
5176 if ( typeof selector !==
"string" ) {
5178 data = data || selector;
5179 selector = undefined;
5181 for ( type in types ) {
5182 this.on( type, selector, data, types[ type ], one );
5187 if ( data == null && fn == null ) {
5190 data = selector = undefined;
5191 }
else if ( fn == null ) {
5192 if ( typeof selector ===
"string" ) {
5200 selector = undefined;
5203 if ( fn ===
false ) {
5211 fn =
function( event ) {
5213 jQuery().off( event );
5214 return origFn.apply(
this, arguments );
5217 fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
5219 return this.each(
function() {
5220 jQuery.event.add(
this, types, fn, data, selector );
5223 one:
function( types, selector, data, fn ) {
5224 return this.on( types, selector, data, fn, 1 );
5226 off:
function( types, selector, fn ) {
5227 var handleObj, type;
5228 if ( types && types.preventDefault && types.handleObj ) {
5230 handleObj = types.handleObj;
5231 jQuery( types.delegateTarget ).off(
5232 handleObj.namespace ? handleObj.origType +
"." + handleObj.namespace : handleObj.origType,
5238 if ( typeof types ===
"object" ) {
5240 for ( type in types ) {
5241 this.off( type, selector, types[ type ] );
5245 if ( selector ===
false || typeof selector ===
"function" ) {
5248 selector = undefined;
5250 if ( fn ===
false ) {
5253 return this.each(
function() {
5254 jQuery.event.remove(
this, types, fn, selector );
5258 trigger:
function( type, data ) {
5259 return this.each(
function() {
5260 jQuery.event.trigger( type, data,
this );
5263 triggerHandler:
function( type, data ) {
5266 return jQuery.event.trigger( type, data, elem,
true );
5272 function createSafeFragment( document ) {
5273 var list = nodeNames.split(
"|" ),
5274 safeFrag = document.createDocumentFragment();
5276 if ( safeFrag.createElement ) {
5277 while ( list.length ) {
5278 safeFrag.createElement(
5286 var nodeNames =
"abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
5287 "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
5288 rinlinejQuery = / jQuery\d+=
"(?:null|\d+)"/g,
5289 rnoshimcache =
new RegExp(
"<(?:" + nodeNames +
")[\\s/>]",
"i"),
5290 rleadingWhitespace = /^\s+/,
5291 rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
5292 rtagName = /<([\w:]+)/,
5294 rhtml = /<|&#?\w+;/,
5295 rnoInnerhtml = /<(?:script|style|link)/i,
5297 rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
5298 rscriptType = /^$|\/(?:java|ecma)script/i,
5299 rscriptTypeMasked = /^
true\/(.*)/,
5300 rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
5304 option: [ 1,
"<select multiple='multiple'>",
"</select>" ],
5305 legend: [ 1,
"<fieldset>",
"</fieldset>" ],
5306 area: [ 1,
"<map>",
"</map>" ],
5307 param: [ 1,
"<object>",
"</object>" ],
5308 thead: [ 1,
"<table>",
"</table>" ],
5309 tr: [ 2,
"<table><tbody>",
"</tbody></table>" ],
5310 col: [ 2,
"<table><tbody></tbody><colgroup>",
"</colgroup></table>" ],
5311 td: [ 3,
"<table><tbody><tr>",
"</tr></tbody></table>" ],
5315 _default: support.htmlSerialize ? [ 0,
"",
"" ] : [ 1,
"X<div>",
"</div>" ]
5317 safeFragment = createSafeFragment( document ),
5318 fragmentDiv = safeFragment.appendChild( document.createElement(
"div") );
5320 wrapMap.optgroup = wrapMap.option;
5321 wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
5322 wrapMap.th = wrapMap.td;
5324 function getAll( context, tag ) {
5327 found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag ||
"*" ) :
5328 typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag ||
"*" ) :
5332 for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {
5333 if ( !tag || jQuery.nodeName( elem, tag ) ) {
5336 jQuery.merge( found, getAll( elem, tag ) );
5341 return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
5342 jQuery.merge( [ context ], found ) :
5347 function fixDefaultChecked( elem ) {
5348 if ( rcheckableType.test( elem.type ) ) {
5349 elem.defaultChecked = elem.checked;
5355 function manipulationTarget( elem, content ) {
5356 return jQuery.nodeName( elem,
"table" ) &&
5357 jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild,
"tr" ) ?
5359 elem.getElementsByTagName(
"tbody")[0] ||
5360 elem.appendChild( elem.ownerDocument.createElement(
"tbody") ) :
5365 function disableScript( elem ) {
5366 elem.type = (jQuery.find.attr( elem,
"type" ) !== null) +
"/" + elem.type;
5369 function restoreScript( elem ) {
5370 var match = rscriptTypeMasked.exec( elem.type );
5372 elem.type = match[1];
5374 elem.removeAttribute(
"type");
5380 function setGlobalEval( elems, refElements ) {
5383 for ( ; (elem = elems[i]) != null; i++ ) {
5384 jQuery._data( elem,
"globalEval", !refElements || jQuery._data( refElements[i],
"globalEval" ) );
5388 function cloneCopyEvent( src, dest ) {
5390 if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {
5395 oldData = jQuery._data( src ),
5396 curData = jQuery._data( dest, oldData ),
5397 events = oldData.events;
5400 delete curData.handle;
5401 curData.events = {};
5403 for ( type in events ) {
5404 for ( i = 0, l = events[ type ].length; i < l; i++ ) {
5405 jQuery.event.add( dest, type, events[ type ][ i ] );
5411 if ( curData.data ) {
5412 curData.data = jQuery.extend( {}, curData.data );
5416 function fixCloneNodeIssues( src, dest ) {
5417 var nodeName, e, data;
5420 if ( dest.nodeType !== 1 ) {
5424 nodeName = dest.nodeName.toLowerCase();
5427 if ( !support.noCloneEvent && dest[ jQuery.expando ] ) {
5428 data = jQuery._data( dest );
5430 for ( e in data.events ) {
5431 jQuery.removeEvent( dest, e, data.handle );
5435 dest.removeAttribute( jQuery.expando );
5439 if ( nodeName ===
"script" && dest.text !== src.text ) {
5440 disableScript( dest ).text = src.text;
5441 restoreScript( dest );
5445 }
else if ( nodeName ===
"object" ) {
5446 if ( dest.parentNode ) {
5447 dest.outerHTML = src.outerHTML;
5454 if ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {
5455 dest.innerHTML = src.innerHTML;
5458 }
else if ( nodeName ===
"input" && rcheckableType.test( src.type ) ) {
5463 dest.defaultChecked = dest.checked = src.checked;
5467 if ( dest.value !== src.value ) {
5468 dest.value = src.value;
5473 }
else if ( nodeName ===
"option" ) {
5474 dest.defaultSelected = dest.selected = src.defaultSelected;
5478 }
else if ( nodeName ===
"input" || nodeName ===
"textarea" ) {
5479 dest.defaultValue = src.defaultValue;
5484 clone:
function( elem, dataAndEvents, deepDataAndEvents ) {
5485 var destElements, node, clone, i, srcElements,
5486 inPage = jQuery.contains( elem.ownerDocument, elem );
5488 if ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test(
"<" + elem.nodeName +
">" ) ) {
5489 clone = elem.cloneNode(
true );
5493 fragmentDiv.innerHTML = elem.outerHTML;
5494 fragmentDiv.removeChild( clone = fragmentDiv.firstChild );
5497 if ( (!support.noCloneEvent || !support.noCloneChecked) &&
5498 (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {
5501 destElements = getAll( clone );
5502 srcElements = getAll( elem );
5505 for ( i = 0; (node = srcElements[i]) != null; ++i ) {
5507 if ( destElements[i] ) {
5508 fixCloneNodeIssues( node, destElements[i] );
5514 if ( dataAndEvents ) {
5515 if ( deepDataAndEvents ) {
5516 srcElements = srcElements || getAll( elem );
5517 destElements = destElements || getAll( clone );
5519 for ( i = 0; (node = srcElements[i]) != null; i++ ) {
5520 cloneCopyEvent( node, destElements[i] );
5523 cloneCopyEvent( elem, clone );
5528 destElements = getAll( clone,
"script" );
5529 if ( destElements.length > 0 ) {
5530 setGlobalEval( destElements, !inPage && getAll( elem,
"script" ) );
5533 destElements = srcElements = node = null;
5539 buildFragment:
function( elems, context, scripts, selection ) {
5540 var j, elem, contains,
5541 tmp, tag, tbody, wrap,
5545 safe = createSafeFragment( context ),
5550 for ( ; i < l; i++ ) {
5553 if ( elem || elem === 0 ) {
5556 if ( jQuery.type( elem ) ===
"object" ) {
5557 jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
5560 }
else if ( !rhtml.test( elem ) ) {
5561 nodes.push( context.createTextNode( elem ) );
5565 tmp = tmp || safe.appendChild( context.createElement(
"div") );
5568 tag = (rtagName.exec( elem ) || [
"",
"" ])[ 1 ].toLowerCase();
5569 wrap = wrapMap[ tag ] || wrapMap._default;
5571 tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag,
"<$1></$2>" ) + wrap[2];
5576 tmp = tmp.lastChild;
5580 if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
5581 nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );
5585 if ( !support.tbody ) {
5588 elem = tag ===
"table" && !rtbody.test( elem ) ?
5592 wrap[1] ===
"<table>" && !rtbody.test( elem ) ?
5596 j = elem && elem.childNodes.length;
5598 if ( jQuery.nodeName( (tbody = elem.childNodes[j]),
"tbody" ) && !tbody.childNodes.length ) {
5599 elem.removeChild( tbody );
5604 jQuery.merge( nodes, tmp.childNodes );
5607 tmp.textContent =
"";
5610 while ( tmp.firstChild ) {
5611 tmp.removeChild( tmp.firstChild );
5615 tmp = safe.lastChild;
5622 safe.removeChild( tmp );
5627 if ( !support.appendChecked ) {
5628 jQuery.grep( getAll( nodes,
"input" ), fixDefaultChecked );
5632 while ( (elem = nodes[ i++ ]) ) {
5636 if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
5640 contains = jQuery.contains( elem.ownerDocument, elem );
5643 tmp = getAll( safe.appendChild( elem ),
"script" );
5647 setGlobalEval( tmp );
5653 while ( (elem = tmp[ j++ ]) ) {
5654 if ( rscriptType.test( elem.type ||
"" ) ) {
5655 scripts.push( elem );
5666 cleanData:
function( elems, acceptData ) {
5667 var elem, type, id, data,
5669 internalKey = jQuery.expando,
5670 cache = jQuery.cache,
5671 deleteExpando = support.deleteExpando,
5672 special = jQuery.event.special;
5674 for ( ; (elem = elems[i]) != null; i++ ) {
5675 if ( acceptData || jQuery.acceptData( elem ) ) {
5677 id = elem[ internalKey ];
5678 data =
id && cache[ id ];
5681 if ( data.events ) {
5682 for ( type in data.events ) {
5683 if ( special[ type ] ) {
5684 jQuery.event.remove( elem, type );
5688 jQuery.removeEvent( elem, type, data.handle );
5694 if ( cache[
id ] ) {
5701 if ( deleteExpando ) {
5702 delete elem[ internalKey ];
5704 }
else if ( typeof elem.removeAttribute !== strundefined ) {
5705 elem.removeAttribute( internalKey );
5708 elem[ internalKey ] = null;
5711 deletedIds.push(
id );
5720 text:
function( value ) {
5721 return access(
this,
function( value ) {
5722 return value === undefined ?
5723 jQuery.text(
this ) :
5724 this.empty().append( (
this[0] &&
this[0].ownerDocument || document ).createTextNode( value ) );
5725 }, null, value, arguments.length );
5728 append:
function() {
5729 return this.domManip( arguments,
function( elem ) {
5730 if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5731 var target = manipulationTarget(
this, elem );
5732 target.appendChild( elem );
5737 prepend:
function() {
5738 return this.domManip( arguments,
function( elem ) {
5739 if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5740 var target = manipulationTarget(
this, elem );
5741 target.insertBefore( elem, target.firstChild );
5746 before:
function() {
5747 return this.domManip( arguments,
function( elem ) {
5748 if ( this.parentNode ) {
5749 this.parentNode.insertBefore( elem,
this );
5755 return this.domManip( arguments,
function( elem ) {
5756 if ( this.parentNode ) {
5757 this.parentNode.insertBefore( elem, this.nextSibling );
5762 remove:
function( selector, keepData ) {
5764 elems = selector ? jQuery.filter( selector,
this ) :
this,
5767 for ( ; (elem = elems[i]) != null; i++ ) {
5769 if ( !keepData && elem.nodeType === 1 ) {
5770 jQuery.cleanData( getAll( elem ) );
5773 if ( elem.parentNode ) {
5774 if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
5775 setGlobalEval( getAll( elem,
"script" ) );
5777 elem.parentNode.removeChild( elem );
5788 for ( ; (elem =
this[i]) != null; i++ ) {
5790 if ( elem.nodeType === 1 ) {
5791 jQuery.cleanData( getAll( elem,
false ) );
5795 while ( elem.firstChild ) {
5796 elem.removeChild( elem.firstChild );
5801 if ( elem.options && jQuery.nodeName( elem,
"select" ) ) {
5802 elem.options.length = 0;
5809 clone:
function( dataAndEvents, deepDataAndEvents ) {
5810 dataAndEvents = dataAndEvents == null ?
false : dataAndEvents;
5811 deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
5813 return this.map(
function() {
5814 return jQuery.clone(
this, dataAndEvents, deepDataAndEvents );
5818 html:
function( value ) {
5819 return access(
this,
function( value ) {
5820 var elem =
this[ 0 ] || {},
5824 if ( value === undefined ) {
5825 return elem.nodeType === 1 ?
5826 elem.innerHTML.replace( rinlinejQuery,
"" ) :
5831 if ( typeof value ===
"string" && !rnoInnerhtml.test( value ) &&
5832 ( support.htmlSerialize || !rnoshimcache.test( value ) ) &&
5833 ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
5834 !wrapMap[ (rtagName.exec( value ) || [
"",
"" ])[ 1 ].toLowerCase() ] ) {
5836 value = value.replace( rxhtmlTag,
"<$1></$2>" );
5839 for (; i < l; i++ ) {
5841 elem =
this[i] || {};
5842 if ( elem.nodeType === 1 ) {
5843 jQuery.cleanData( getAll( elem,
false ) );
5844 elem.innerHTML = value;
5855 this.empty().append( value );
5857 }, null, value, arguments.length );
5860 replaceWith:
function() {
5861 var arg = arguments[ 0 ];
5864 this.domManip( arguments,
function( elem ) {
5865 arg = this.parentNode;
5867 jQuery.cleanData( getAll(
this ) );
5870 arg.replaceChild( elem,
this );
5875 return arg && (arg.length || arg.nodeType) ?
this : this.
remove();
5878 detach:
function( selector ) {
5879 return this.
remove( selector, true );
5882 domManip:
function( args, callback ) {
5885 args = concat.apply( [], args );
5887 var first, node, hasScripts,
5888 scripts, doc, fragment,
5894 isFunction = jQuery.isFunction( value );
5898 ( l > 1 && typeof value ===
"string" &&
5899 !support.checkClone && rchecked.test( value ) ) ) {
5900 return this.each(
function( index ) {
5901 var
self =
set.eq( index );
5903 args[0] = value.call(
this, index,
self.html() );
5905 self.domManip( args, callback );
5910 fragment = jQuery.buildFragment( args,
this[ 0 ].ownerDocument,
false,
this );
5911 first = fragment.firstChild;
5913 if ( fragment.childNodes.length === 1 ) {
5918 scripts = jQuery.map( getAll( fragment,
"script" ), disableScript );
5919 hasScripts = scripts.length;
5923 for ( ; i < l; i++ ) {
5926 if ( i !== iNoClone ) {
5927 node = jQuery.clone( node,
true,
true );
5931 jQuery.merge( scripts, getAll( node,
"script" ) );
5935 callback.call(
this[i], node, i );
5939 doc = scripts[ scripts.length - 1 ].ownerDocument;
5942 jQuery.map( scripts, restoreScript );
5945 for ( i = 0; i < hasScripts; i++ ) {
5946 node = scripts[ i ];
5947 if ( rscriptType.test( node.type ||
"" ) &&
5948 !jQuery._data( node,
"globalEval" ) && jQuery.contains( doc, node ) ) {
5952 if ( jQuery._evalUrl ) {
5953 jQuery._evalUrl( node.src );
5956 jQuery.globalEval( ( node.text || node.textContent || node.innerHTML ||
"" ).replace( rcleanScript,
"" ) );
5963 fragment = first = null;
5973 prependTo:
"prepend",
5974 insertBefore:
"before",
5975 insertAfter:
"after",
5976 replaceAll:
"replaceWith" 5977 },
function( name, original ) {
5978 jQuery.fn[ name ] =
function( selector ) {
5982 insert = jQuery( selector ),
5983 last = insert.length - 1;
5985 for ( ; i <= last; i++ ) {
5986 elems = i === last ?
this : this.clone(
true);
5987 jQuery( insert[i] )[ original ]( elems );
5990 push.apply( ret, elems.get() );
5993 return this.pushStack( ret );
6007 function actualDisplay( name, doc ) {
6009 elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
6012 display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
6016 style.display : jQuery.css( elem[ 0 ],
"display" );
6029 function defaultDisplay( nodeName ) {
6031 display = elemdisplay[ nodeName ];
6034 display = actualDisplay( nodeName, doc );
6037 if ( display ===
"none" || !display ) {
6040 iframe = (iframe || jQuery(
"<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
6043 doc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;
6049 display = actualDisplay( nodeName, doc );
6054 elemdisplay[ nodeName ] = display;
6062 var shrinkWrapBlocksVal;
6064 support.shrinkWrapBlocks =
function() {
6065 if ( shrinkWrapBlocksVal != null ) {
6066 return shrinkWrapBlocksVal;
6070 shrinkWrapBlocksVal =
false;
6073 var div, body, container;
6075 body = document.getElementsByTagName(
"body" )[ 0 ];
6076 if ( !body || !body.style ) {
6082 div = document.createElement(
"div" );
6083 container = document.createElement(
"div" );
6084 container.style.cssText =
"position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
6085 body.appendChild( container ).appendChild( div );
6089 if ( typeof div.style.zoom !== strundefined ) {
6094 "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
6095 "box-sizing:content-box;display:block;margin:0;border:0;" +
6096 "padding:1px;width:1px;zoom:1";
6097 div.appendChild( document.createElement(
"div" ) ).style.width =
"5px";
6098 shrinkWrapBlocksVal = div.offsetWidth !== 3;
6101 body.removeChild( container );
6103 return shrinkWrapBlocksVal;
6107 var rmargin = (/^margin/);
6109 var rnumnonpx =
new RegExp(
"^(" + pnum +
")(?!px)[a-z%]+$",
"i" );
6113 var getStyles, curCSS,
6114 rposition = /^(top|right|bottom|left)$/;
6116 if ( window.getComputedStyle ) {
6117 getStyles =
function( elem ) {
6118 return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
6121 curCSS =
function( elem, name, computed ) {
6122 var width, minWidth, maxWidth, ret,
6125 computed = computed || getStyles( elem );
6128 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
6132 if ( ret ===
"" && !jQuery.contains( elem.ownerDocument, elem ) ) {
6133 ret = jQuery.style( elem, name );
6140 if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
6143 width = style.width;
6144 minWidth = style.minWidth;
6145 maxWidth = style.maxWidth;
6148 style.minWidth = style.maxWidth = style.width = ret;
6149 ret = computed.width;
6152 style.width = width;
6153 style.minWidth = minWidth;
6154 style.maxWidth = maxWidth;
6160 return ret === undefined ?
6164 }
else if ( document.documentElement.currentStyle ) {
6165 getStyles =
function( elem ) {
6166 return elem.currentStyle;
6169 curCSS =
function( elem, name, computed ) {
6170 var left, rs, rsLeft, ret,
6173 computed = computed || getStyles( elem );
6174 ret = computed ? computed[ name ] : undefined;
6178 if ( ret == null && style && style[ name ] ) {
6179 ret = style[ name ];
6189 if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {
6193 rs = elem.runtimeStyle;
6194 rsLeft = rs && rs.left;
6198 rs.left = elem.currentStyle.left;
6200 style.left = name ===
"fontSize" ?
"1em" : ret;
6201 ret = style.pixelLeft +
"px";
6212 return ret === undefined ?
6221 function addGetHookIf( conditionFn, hookFn ) {
6225 var condition = conditionFn();
6227 if ( condition == null ) {
6243 return (this.
get = hookFn).apply(
this, arguments );
6251 var div, style, a, pixelPositionVal, boxSizingReliableVal,
6252 reliableHiddenOffsetsVal, reliableMarginRightVal;
6255 div = document.createElement(
"div" );
6256 div.innerHTML =
" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
6257 a = div.getElementsByTagName(
"a" )[ 0 ];
6258 style = a && a.style;
6265 style.cssText =
"float:left;opacity:.5";
6269 support.opacity = style.opacity ===
"0.5";
6273 support.cssFloat = !!style.cssFloat;
6275 div.style.backgroundClip =
"content-box";
6276 div.cloneNode(
true ).style.backgroundClip =
"";
6277 support.clearCloneStyle = div.style.backgroundClip ===
"content-box";
6281 support.boxSizing = style.boxSizing ===
"" || style.MozBoxSizing ===
"" ||
6282 style.WebkitBoxSizing ===
"";
6284 jQuery.extend(support, {
6285 reliableHiddenOffsets:
function() {
6286 if ( reliableHiddenOffsetsVal == null ) {
6287 computeStyleTests();
6289 return reliableHiddenOffsetsVal;
6292 boxSizingReliable:
function() {
6293 if ( boxSizingReliableVal == null ) {
6294 computeStyleTests();
6296 return boxSizingReliableVal;
6299 pixelPosition:
function() {
6300 if ( pixelPositionVal == null ) {
6301 computeStyleTests();
6303 return pixelPositionVal;
6307 reliableMarginRight:
function() {
6308 if ( reliableMarginRightVal == null ) {
6309 computeStyleTests();
6311 return reliableMarginRightVal;
6315 function computeStyleTests() {
6317 var div, body, container, contents;
6319 body = document.getElementsByTagName(
"body" )[ 0 ];
6320 if ( !body || !body.style ) {
6326 div = document.createElement(
"div" );
6327 container = document.createElement(
"div" );
6328 container.style.cssText =
"position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
6329 body.appendChild( container ).appendChild( div );
6334 "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
6335 "box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
6336 "border:1px;padding:1px;width:4px;position:absolute";
6340 pixelPositionVal = boxSizingReliableVal =
false;
6341 reliableMarginRightVal =
true;
6344 if ( window.getComputedStyle ) {
6345 pixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !==
"1%";
6346 boxSizingReliableVal =
6347 ( window.getComputedStyle( div, null ) || { width:
"4px" } ).width ===
"4px";
6353 contents = div.appendChild( document.createElement(
"div" ) );
6356 contents.style.cssText = div.style.cssText =
6359 "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
6360 "box-sizing:content-box;display:block;margin:0;border:0;padding:0";
6361 contents.style.marginRight = contents.style.width =
"0";
6362 div.style.width =
"1px";
6364 reliableMarginRightVal =
6365 !parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );
6375 div.innerHTML =
"<table><tr><td></td><td>t</td></tr></table>";
6376 contents = div.getElementsByTagName(
"td" );
6377 contents[ 0 ].style.cssText =
"margin:0;border:0;padding:0;display:none";
6378 reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;
6379 if ( reliableHiddenOffsetsVal ) {
6380 contents[ 0 ].style.display =
"";
6381 contents[ 1 ].style.display =
"none";
6382 reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;
6385 body.removeChild( container );
6392 jQuery.swap =
function( elem, options, callback, args ) {
6397 for ( name in options ) {
6398 old[ name ] = elem.style[ name ];
6399 elem.style[ name ] = options[ name ];
6402 ret = callback.apply( elem, args || [] );
6405 for ( name in options ) {
6406 elem.style[ name ] = old[ name ];
6414 ralpha = /alpha\([^)]*\)/i,
6415 ropacity = /opacity\s*=\s*([^)]*)/,
6419 rdisplayswap = /^(none|table(?!-c[ea]).+)/,
6420 rnumsplit =
new RegExp(
"^(" + pnum +
")(.*)$",
"i" ),
6421 rrelNum =
new RegExp(
"^([+-])=(" + pnum +
")",
"i" ),
6423 cssShow = { position:
"absolute", visibility:
"hidden", display:
"block" },
6424 cssNormalTransform = {
6429 cssPrefixes = [
"Webkit",
"O",
"Moz",
"ms" ];
6433 function vendorPropName( style, name ) {
6436 if ( name in style ) {
6441 var capName = name.charAt(0).toUpperCase() + name.slice(1),
6443 i = cssPrefixes.length;
6446 name = cssPrefixes[ i ] + capName;
6447 if ( name in style ) {
6455 function showHide( elements, show ) {
6456 var display, elem, hidden,
6459 length = elements.length;
6461 for ( ; index < length; index++ ) {
6462 elem = elements[ index ];
6463 if ( !elem.style ) {
6467 values[ index ] = jQuery._data( elem,
"olddisplay" );
6468 display = elem.style.display;
6472 if ( !values[ index ] && display ===
"none" ) {
6473 elem.style.display =
"";
6479 if ( elem.style.display ===
"" && isHidden( elem ) ) {
6480 values[ index ] = jQuery._data( elem,
"olddisplay", defaultDisplay(elem.nodeName) );
6483 hidden = isHidden( elem );
6485 if ( display && display !==
"none" || !hidden ) {
6486 jQuery._data( elem,
"olddisplay", hidden ? display : jQuery.css( elem,
"display" ) );
6493 for ( index = 0; index < length; index++ ) {
6494 elem = elements[ index ];
6495 if ( !elem.style ) {
6498 if ( !show || elem.style.display ===
"none" || elem.style.display ===
"" ) {
6499 elem.style.display = show ? values[ index ] ||
"" :
"none";
6506 function setPositiveNumber( elem, value, subtract ) {
6507 var matches = rnumsplit.exec( value );
6510 Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] ||
"px" ) :
6514 function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
6515 var i = extra === ( isBorderBox ?
"border" :
"content" ) ?
6519 name ===
"width" ? 1 : 0,
6523 for ( ; i < 4; i += 2 ) {
6525 if ( extra ===
"margin" ) {
6526 val += jQuery.css( elem, extra + cssExpand[ i ],
true, styles );
6529 if ( isBorderBox ) {
6531 if ( extra ===
"content" ) {
6532 val -= jQuery.css( elem,
"padding" + cssExpand[ i ],
true, styles );
6536 if ( extra !==
"margin" ) {
6537 val -= jQuery.css( elem,
"border" + cssExpand[ i ] +
"Width",
true, styles );
6541 val += jQuery.css( elem,
"padding" + cssExpand[ i ],
true, styles );
6544 if ( extra !==
"padding" ) {
6545 val += jQuery.css( elem,
"border" + cssExpand[ i ] +
"Width",
true, styles );
6553 function getWidthOrHeight( elem, name, extra ) {
6556 var valueIsBorderBox =
true,
6557 val = name ===
"width" ? elem.offsetWidth : elem.offsetHeight,
6558 styles = getStyles( elem ),
6559 isBorderBox = support.boxSizing && jQuery.css( elem,
"boxSizing",
false, styles ) ===
"border-box";
6564 if ( val <= 0 || val == null ) {
6566 val = curCSS( elem, name, styles );
6567 if ( val < 0 || val == null ) {
6568 val = elem.style[ name ];
6572 if ( rnumnonpx.test(val) ) {
6578 valueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );
6581 val = parseFloat( val ) || 0;
6586 augmentWidthOrHeight(
6589 extra || ( isBorderBox ?
"border" :
"content" ),
6601 get:
function( elem, computed ) {
6604 var ret = curCSS( elem,
"opacity" );
6605 return ret ===
"" ?
"1" : ret;
6613 "columnCount":
true,
6614 "fillOpacity":
true,
6631 "float": support.cssFloat ?
"cssFloat" :
"styleFloat" 6635 style:
function( elem, name, value, extra ) {
6637 if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
6642 var ret, type, hooks,
6643 origName = jQuery.camelCase( name ),
6646 name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
6650 hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6653 if ( value !== undefined ) {
6654 type = typeof value;
6657 if ( type ===
"string" && (ret = rrelNum.exec( value )) ) {
6658 value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
6664 if ( value == null || value !== value ) {
6669 if ( type ===
"number" && !jQuery.cssNumber[ origName ] ) {
6675 if ( !support.clearCloneStyle && value ===
"" && name.indexOf(
"background") === 0 ) {
6676 style[ name ] =
"inherit";
6680 if ( !hooks || !(
"set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
6685 style[ name ] = value;
6691 if ( hooks &&
"get" in hooks && (ret = hooks.get( elem,
false, extra )) !== undefined ) {
6696 return style[ name ];
6700 css:
function( elem, name, extra, styles ) {
6701 var num, val, hooks,
6702 origName = jQuery.camelCase( name );
6705 name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
6709 hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6712 if ( hooks &&
"get" in hooks ) {
6713 val = hooks.get( elem,
true, extra );
6717 if ( val === undefined ) {
6718 val = curCSS( elem, name, styles );
6722 if ( val ===
"normal" && name in cssNormalTransform ) {
6723 val = cssNormalTransform[ name ];
6727 if ( extra ===
"" || extra ) {
6728 num = parseFloat( val );
6729 return extra ===
true || jQuery.isNumeric( num ) ? num || 0 : val;
6735 jQuery.each([
"height",
"width" ],
function( i, name ) {
6736 jQuery.cssHooks[ name ] = {
6737 get:
function( elem, computed, extra ) {
6741 return rdisplayswap.test( jQuery.css( elem,
"display" ) ) && elem.offsetWidth === 0 ?
6742 jQuery.swap( elem, cssShow,
function() {
6743 return getWidthOrHeight( elem, name, extra );
6745 getWidthOrHeight( elem, name, extra );
6749 set:
function( elem, value, extra ) {
6750 var styles = extra && getStyles( elem );
6751 return setPositiveNumber( elem, value, extra ?
6752 augmentWidthOrHeight(
6756 support.boxSizing && jQuery.css( elem,
"boxSizing",
false, styles ) ===
"border-box",
6764 if ( !support.opacity ) {
6765 jQuery.cssHooks.opacity = {
6766 get:
function( elem, computed ) {
6768 return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) ||
"" ) ?
6769 ( 0.01 * parseFloat( RegExp.$1 ) ) +
"" :
6770 computed ?
"1" :
"";
6773 set:
function( elem, value ) {
6774 var style = elem.style,
6775 currentStyle = elem.currentStyle,
6776 opacity = jQuery.isNumeric( value ) ?
"alpha(opacity=" + value * 100 +
")" :
"",
6777 filter = currentStyle && currentStyle.filter || style.filter ||
"";
6785 if ( ( value >= 1 || value ===
"" ) &&
6786 jQuery.trim( filter.replace( ralpha,
"" ) ) ===
"" &&
6787 style.removeAttribute ) {
6792 style.removeAttribute(
"filter" );
6795 if ( value ===
"" || currentStyle && !currentStyle.filter ) {
6801 style.filter = ralpha.test( filter ) ?
6802 filter.replace( ralpha, opacity ) :
6803 filter +
" " + opacity;
6808 jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
6809 function( elem, computed ) {
6813 return jQuery.swap( elem, {
"display":
"inline-block" },
6814 curCSS, [ elem,
"marginRight" ] );
6824 },
function( prefix, suffix ) {
6825 jQuery.cssHooks[ prefix + suffix ] = {
6826 expand:
function( value ) {
6831 parts = typeof value ===
"string" ? value.split(
" ") : [ value ];
6833 for ( ; i < 4; i++ ) {
6834 expanded[ prefix + cssExpand[ i ] + suffix ] =
6835 parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
6842 if ( !rmargin.test( prefix ) ) {
6843 jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
6848 css:
function( name, value ) {
6849 return access(
this,
function( elem, name, value ) {
6854 if ( jQuery.isArray( name ) ) {
6855 styles = getStyles( elem );
6858 for ( ; i < len; i++ ) {
6859 map[ name[ i ] ] = jQuery.css( elem, name[ i ],
false, styles );
6865 return value !== undefined ?
6866 jQuery.style( elem, name, value ) :
6867 jQuery.css( elem, name );
6868 }, name, value, arguments.length > 1 );
6871 return showHide(
this,
true );
6874 return showHide(
this );
6876 toggle:
function( state ) {
6877 if ( typeof state ===
"boolean" ) {
6878 return state ? this.show() : this.hide();
6881 return this.each(
function() {
6882 if ( isHidden(
this ) ) {
6883 jQuery(
this ).show();
6885 jQuery(
this ).hide();
6892 function Tween( elem, options, prop, end, easing ) {
6893 return new Tween.prototype.init( elem, options, prop, end, easing );
6895 jQuery.Tween = Tween;
6899 init:
function( elem, options, prop, end, easing, unit ) {
6902 this.easing = easing ||
"swing";
6903 this.options = options;
6904 this.start = this.now = this.cur();
6906 this.unit = unit || ( jQuery.cssNumber[ prop ] ?
"" :
"px" );
6909 var hooks = Tween.propHooks[ this.prop ];
6911 return hooks && hooks.get ?
6913 Tween.propHooks._default.get(
this );
6915 run:
function( percent ) {
6917 hooks = Tween.propHooks[ this.prop ];
6919 if ( this.options.duration ) {
6920 this.pos = eased = jQuery.easing[ this.easing ](
6921 percent, this.options.duration * percent, 0, 1, this.options.duration
6924 this.pos = eased = percent;
6926 this.now = ( this.end - this.start ) * eased + this.start;
6928 if ( this.options.step ) {
6929 this.options.step.call( this.elem, this.now,
this );
6932 if ( hooks && hooks.set ) {
6935 Tween.propHooks._default.set(
this );
6941 Tween.prototype.init.prototype = Tween.prototype;
6945 get:
function( tween ) {
6948 if ( tween.elem[ tween.prop ] != null &&
6949 (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
6950 return tween.elem[ tween.prop ];
6957 result = jQuery.css( tween.elem, tween.prop,
"" );
6959 return !result || result ===
"auto" ? 0 : result;
6961 set:
function( tween ) {
6964 if ( jQuery.fx.step[ tween.prop ] ) {
6965 jQuery.fx.step[ tween.prop ]( tween );
6966 }
else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
6967 jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
6969 tween.elem[ tween.prop ] = tween.now;
6978 Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
6979 set:
function( tween ) {
6980 if ( tween.elem.nodeType && tween.elem.parentNode ) {
6981 tween.elem[ tween.prop ] = tween.now;
6987 linear:
function( p ) {
6990 swing:
function( p ) {
6991 return 0.5 - Math.cos( p * Math.PI ) / 2;
6995 jQuery.fx = Tween.prototype.init;
6998 jQuery.fx.step = {};
7005 rfxtypes = /^(?:toggle|show|hide)$/,
7006 rfxnum =
new RegExp(
"^(?:([+-])=|)(" + pnum +
")([a-z%]*)$",
"i" ),
7007 rrun = /queueHooks$/,
7008 animationPrefilters = [ defaultPrefilter ],
7010 "*": [
function( prop, value ) {
7011 var tween = this.createTween( prop, value ),
7012 target = tween.cur(),
7013 parts = rfxnum.exec( value ),
7014 unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ?
"" :
"px" ),
7017 start = ( jQuery.cssNumber[ prop ] || unit !==
"px" && +target ) &&
7018 rfxnum.exec( jQuery.css( tween.elem, prop ) ),
7022 if ( start && start[ 3 ] !== unit ) {
7024 unit = unit || start[ 3 ];
7027 parts = parts || [];
7030 start = +target || 1;
7035 scale = scale ||
".5";
7038 start = start / scale;
7039 jQuery.style( tween.elem, prop, start + unit );
7043 }
while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
7048 start = tween.start = +start || +target || 0;
7051 tween.end = parts[ 1 ] ?
7052 start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
7061 function createFxNow() {
7062 setTimeout(
function() {
7065 return ( fxNow = jQuery.now() );
7069 function genFx( type, includeWidth ) {
7071 attrs = { height: type },
7076 includeWidth = includeWidth ? 1 : 0;
7077 for ( ; i < 4 ; i += 2 - includeWidth ) {
7078 which = cssExpand[ i ];
7079 attrs[
"margin" + which ] = attrs[
"padding" + which ] = type;
7082 if ( includeWidth ) {
7083 attrs.opacity = attrs.width = type;
7089 function createTween( value, prop, animation ) {
7091 collection = ( tweeners[ prop ] || [] ).concat( tweeners[
"*" ] ),
7093 length = collection.length;
7094 for ( ; index < length; index++ ) {
7095 if ( (tween = collection[ index ].call( animation, prop, value )) ) {
7103 function defaultPrefilter( elem, props, opts ) {
7105 var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
7109 hidden = elem.nodeType && isHidden( elem ),
7110 dataShow = jQuery._data( elem,
"fxshow" );
7113 if ( !opts.queue ) {
7114 hooks = jQuery._queueHooks( elem,
"fx" );
7115 if ( hooks.unqueued == null ) {
7117 oldfire = hooks.empty.fire;
7118 hooks.empty.fire =
function() {
7119 if ( !hooks.unqueued ) {
7126 anim.always(
function() {
7129 anim.always(
function() {
7131 if ( !jQuery.queue( elem,
"fx" ).length ) {
7139 if ( elem.nodeType === 1 && (
"height" in props ||
"width" in props ) ) {
7144 opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
7148 display = jQuery.css( elem,
"display" );
7151 checkDisplay = display ===
"none" ?
7152 jQuery._data( elem,
"olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
7154 if ( checkDisplay ===
"inline" && jQuery.css( elem,
"float" ) ===
"none" ) {
7158 if ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) ===
"inline" ) {
7159 style.display =
"inline-block";
7166 if ( opts.overflow ) {
7167 style.overflow =
"hidden";
7168 if ( !support.shrinkWrapBlocks() ) {
7169 anim.always(
function() {
7170 style.overflow = opts.overflow[ 0 ];
7171 style.overflowX = opts.overflow[ 1 ];
7172 style.overflowY = opts.overflow[ 2 ];
7178 for ( prop in props ) {
7179 value = props[ prop ];
7180 if ( rfxtypes.exec( value ) ) {
7181 delete props[ prop ];
7182 toggle = toggle || value ===
"toggle";
7183 if ( value === ( hidden ?
"hide" :
"show" ) ) {
7186 if ( value ===
"show" && dataShow && dataShow[ prop ] !== undefined ) {
7192 orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
7196 display = undefined;
7200 if ( !jQuery.isEmptyObject( orig ) ) {
7202 if (
"hidden" in dataShow ) {
7203 hidden = dataShow.hidden;
7206 dataShow = jQuery._data( elem,
"fxshow", {} );
7211 dataShow.hidden = !hidden;
7214 jQuery( elem ).show();
7216 anim.done(
function() {
7217 jQuery( elem ).hide();
7220 anim.done(
function() {
7222 jQuery._removeData( elem,
"fxshow" );
7223 for ( prop in orig ) {
7224 jQuery.style( elem, prop, orig[ prop ] );
7227 for ( prop in orig ) {
7228 tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
7230 if ( !( prop in dataShow ) ) {
7231 dataShow[ prop ] = tween.start;
7233 tween.end = tween.start;
7234 tween.start = prop ===
"width" || prop ===
"height" ? 1 : 0;
7240 }
else if ( (display ===
"none" ? defaultDisplay( elem.nodeName ) : display) ===
"inline" ) {
7241 style.display = display;
7245 function propFilter( props, specialEasing ) {
7246 var index, name, easing, value, hooks;
7249 for ( index in props ) {
7250 name = jQuery.camelCase( index );
7251 easing = specialEasing[ name ];
7252 value = props[ index ];
7253 if ( jQuery.isArray( value ) ) {
7254 easing = value[ 1 ];
7255 value = props[ index ] = value[ 0 ];
7258 if ( index !== name ) {
7259 props[ name ] = value;
7260 delete props[ index ];
7263 hooks = jQuery.cssHooks[ name ];
7264 if ( hooks &&
"expand" in hooks ) {
7265 value = hooks.expand( value );
7266 delete props[ name ];
7270 for ( index in value ) {
7271 if ( !( index in props ) ) {
7272 props[ index ] = value[ index ];
7273 specialEasing[ index ] = easing;
7277 specialEasing[ name ] = easing;
7282 function Animation( elem, properties, options ) {
7286 length = animationPrefilters.length,
7287 deferred = jQuery.Deferred().always(
function() {
7295 var currentTime = fxNow || createFxNow(),
7296 remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
7298 temp = remaining / animation.duration || 0,
7301 length = animation.tweens.length;
7303 for ( ; index < length ; index++ ) {
7304 animation.tweens[ index ].run( percent );
7307 deferred.notifyWith( elem, [ animation, percent, remaining ]);
7309 if ( percent < 1 && length ) {
7312 deferred.resolveWith( elem, [ animation ] );
7316 animation = deferred.promise({
7318 props: jQuery.extend( {}, properties ),
7319 opts: jQuery.extend(
true, { specialEasing: {} }, options ),
7320 originalProperties: properties,
7321 originalOptions: options,
7322 startTime: fxNow || createFxNow(),
7323 duration: options.duration,
7325 createTween:
function( prop, end ) {
7326 var tween = jQuery.Tween( elem, animation.opts, prop, end,
7327 animation.opts.specialEasing[ prop ] || animation.opts.easing );
7328 animation.tweens.push( tween );
7331 stop:
function( gotoEnd ) {
7335 length = gotoEnd ? animation.tweens.length : 0;
7340 for ( ; index < length ; index++ ) {
7341 animation.tweens[ index ].run( 1 );
7347 deferred.resolveWith( elem, [ animation, gotoEnd ] );
7349 deferred.rejectWith( elem, [ animation, gotoEnd ] );
7354 props = animation.props;
7356 propFilter( props, animation.opts.specialEasing );
7358 for ( ; index < length ; index++ ) {
7359 result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
7365 jQuery.map( props, createTween, animation );
7367 if ( jQuery.isFunction( animation.opts.start ) ) {
7368 animation.opts.start.call( elem, animation );
7372 jQuery.extend( tick, {
7375 queue: animation.opts.queue
7380 return animation.progress( animation.opts.progress )
7381 .done( animation.opts.done, animation.opts.complete )
7382 .fail( animation.opts.fail )
7383 .always( animation.opts.always );
7386 jQuery.Animation = jQuery.extend( Animation, {
7387 tweener:
function( props, callback ) {
7388 if ( jQuery.isFunction( props ) ) {
7392 props = props.split(
" ");
7397 length = props.length;
7399 for ( ; index < length ; index++ ) {
7400 prop = props[ index ];
7401 tweeners[ prop ] = tweeners[ prop ] || [];
7402 tweeners[ prop ].unshift( callback );
7406 prefilter:
function( callback, prepend ) {
7408 animationPrefilters.unshift( callback );
7410 animationPrefilters.push( callback );
7415 jQuery.speed =
function( speed, easing, fn ) {
7416 var opt = speed && typeof speed ===
"object" ? jQuery.extend( {}, speed ) : {
7417 complete: fn || !fn && easing ||
7418 jQuery.isFunction( speed ) && speed,
7420 easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
7423 opt.duration = jQuery.fx.off ? 0 : typeof opt.duration ===
"number" ? opt.duration :
7424 opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
7427 if ( opt.queue == null || opt.queue ===
true ) {
7432 opt.old = opt.complete;
7434 opt.complete =
function() {
7435 if ( jQuery.isFunction( opt.old ) ) {
7436 opt.old.call(
this );
7440 jQuery.dequeue(
this, opt.queue );
7448 fadeTo:
function( speed, to, easing, callback ) {
7451 return this.filter( isHidden ).css(
"opacity", 0 ).show()
7454 .end().animate({ opacity: to }, speed, easing, callback );
7456 animate:
function( prop, speed, easing, callback ) {
7457 var empty = jQuery.isEmptyObject( prop ),
7458 optall = jQuery.speed( speed, easing, callback ),
7459 doAnimation =
function() {
7461 var anim = Animation(
this, jQuery.extend( {}, prop ), optall );
7464 if ( empty || jQuery._data(
this,
"finish" ) ) {
7468 doAnimation.finish = doAnimation;
7470 return empty || optall.queue ===
false ?
7471 this.each( doAnimation ) :
7472 this.queue( optall.queue, doAnimation );
7474 stop:
function( type, clearQueue, gotoEnd ) {
7475 var stopQueue =
function( hooks ) {
7476 var stop = hooks.stop;
7481 if ( typeof type !==
"string" ) {
7482 gotoEnd = clearQueue;
7486 if ( clearQueue && type !==
false ) {
7487 this.queue( type ||
"fx", [] );
7490 return this.each(
function() {
7492 index = type != null && type +
"queueHooks",
7493 timers = jQuery.timers,
7494 data = jQuery._data(
this );
7497 if ( data[ index ] && data[ index ].stop ) {
7498 stopQueue( data[ index ] );
7501 for ( index in data ) {
7502 if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
7503 stopQueue( data[ index ] );
7508 for ( index = timers.length; index--; ) {
7509 if ( timers[ index ].elem ===
this && (type == null || timers[ index ].queue === type) ) {
7510 timers[ index ].anim.stop( gotoEnd );
7512 timers.splice( index, 1 );
7519 if ( dequeue || !gotoEnd ) {
7520 jQuery.dequeue(
this, type );
7524 finish:
function( type ) {
7525 if ( type !==
false ) {
7526 type = type ||
"fx";
7528 return this.each(
function() {
7530 data = jQuery._data(
this ),
7531 queue = data[ type +
"queue" ],
7532 hooks = data[ type +
"queueHooks" ],
7533 timers = jQuery.timers,
7534 length = queue ? queue.length : 0;
7540 jQuery.queue(
this, type, [] );
7542 if ( hooks && hooks.stop ) {
7543 hooks.stop.call(
this,
true );
7547 for ( index = timers.length; index--; ) {
7548 if ( timers[ index ].elem ===
this && timers[ index ].queue === type ) {
7549 timers[ index ].anim.stop(
true );
7550 timers.splice( index, 1 );
7555 for ( index = 0; index < length; index++ ) {
7556 if ( queue[ index ] && queue[ index ].finish ) {
7557 queue[ index ].finish.call(
this );
7567 jQuery.each([
"toggle",
"show",
"hide" ],
function( i, name ) {
7568 var cssFn = jQuery.fn[ name ];
7569 jQuery.fn[ name ] =
function( speed, easing, callback ) {
7570 return speed == null || typeof speed ===
"boolean" ?
7571 cssFn.apply(
this, arguments ) :
7572 this.animate( genFx( name,
true ), speed, easing, callback );
7578 slideDown: genFx(
"show"),
7579 slideUp: genFx(
"hide"),
7580 slideToggle: genFx(
"toggle"),
7581 fadeIn: { opacity:
"show" },
7582 fadeOut: { opacity:
"hide" },
7583 fadeToggle: { opacity:
"toggle" }
7584 },
function( name, props ) {
7585 jQuery.fn[ name ] =
function( speed, easing, callback ) {
7586 return this.animate( props, speed, easing, callback );
7591 jQuery.fx.tick =
function() {
7593 timers = jQuery.timers,
7596 fxNow = jQuery.now();
7598 for ( ; i < timers.length; i++ ) {
7599 timer = timers[ i ];
7601 if ( !timer() && timers[ i ] === timer ) {
7602 timers.splice( i--, 1 );
7606 if ( !timers.length ) {
7612 jQuery.fx.timer =
function( timer ) {
7613 jQuery.timers.push( timer );
7617 jQuery.timers.pop();
7621 jQuery.fx.interval = 13;
7623 jQuery.fx.start =
function() {
7625 timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
7629 jQuery.fx.stop =
function() {
7630 clearInterval( timerId );
7634 jQuery.fx.speeds = {
7644 jQuery.fn.delay =
function( time, type ) {
7645 time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
7646 type = type ||
"fx";
7648 return this.queue( type,
function( next, hooks ) {
7649 var timeout = setTimeout( next, time );
7650 hooks.stop =
function() {
7651 clearTimeout( timeout );
7659 var input, div, select, a, opt;
7662 div = document.createElement(
"div" );
7663 div.setAttribute(
"className",
"t" );
7664 div.innerHTML =
" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
7665 a = div.getElementsByTagName(
"a")[ 0 ];
7668 select = document.createElement(
"select");
7669 opt = select.appendChild( document.createElement(
"option") );
7670 input = div.getElementsByTagName(
"input")[ 0 ];
7672 a.style.cssText =
"top:1px";
7675 support.getSetAttribute = div.className !==
"t";
7679 support.style = /top/.test( a.getAttribute(
"style") );
7683 support.hrefNormalized = a.getAttribute(
"href") ===
"/a";
7686 support.checkOn = !!input.value;
7690 support.optSelected = opt.selected;
7693 support.enctype = !!document.createElement(
"form").enctype;
7697 select.disabled =
true;
7698 support.optDisabled = !opt.disabled;
7702 input = document.createElement(
"input" );
7703 input.setAttribute(
"value",
"" );
7704 support.input = input.getAttribute(
"value" ) ===
"";
7708 input.setAttribute(
"type",
"radio" );
7709 support.radioValue = input.value ===
"t";
7713 var rreturn = /\r/g;
7716 val:
function( value ) {
7717 var hooks, ret, isFunction,
7720 if ( !arguments.length ) {
7722 hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
7724 if ( hooks &&
"get" in hooks && (ret = hooks.get( elem,
"value" )) !== undefined ) {
7730 return typeof ret ===
"string" ?
7732 ret.replace(rreturn,
"") :
7734 ret == null ?
"" : ret;
7740 isFunction = jQuery.isFunction( value );
7742 return this.each(
function( i ) {
7745 if ( this.nodeType !== 1 ) {
7750 val = value.call(
this, i, jQuery(
this ).val() );
7756 if ( val == null ) {
7758 }
else if ( typeof val ===
"number" ) {
7760 }
else if ( jQuery.isArray( val ) ) {
7761 val = jQuery.map( val,
function( value ) {
7762 return value == null ?
"" : value +
"";
7766 hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
7769 if ( !hooks || !(
"set" in hooks) || hooks.set(
this, val,
"value" ) === undefined ) {
7779 get:
function( elem ) {
7780 var val = jQuery.find.attr( elem,
"value" );
7781 return val != null ?
7785 jQuery.trim( jQuery.text( elem ) );
7789 get:
function( elem ) {
7791 options = elem.options,
7792 index = elem.selectedIndex,
7793 one = elem.type ===
"select-one" || index < 0,
7794 values = one ? null : [],
7795 max = one ? index + 1 : options.length,
7801 for ( ; i < max; i++ ) {
7802 option = options[ i ];
7805 if ( ( option.selected || i === index ) &&
7807 ( support.optDisabled ? !option.disabled : option.getAttribute(
"disabled") === null ) &&
7808 ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode,
"optgroup" ) ) ) {
7811 value = jQuery( option ).val();
7819 values.push( value );
7826 set:
function( elem, value ) {
7827 var optionSet, option,
7828 options = elem.options,
7829 values = jQuery.makeArray( value ),
7833 option = options[ i ];
7835 if ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {
7842 option.selected = optionSet =
true;
7847 option.scrollHeight;
7851 option.selected =
false;
7857 elem.selectedIndex = -1;
7867 jQuery.each([
"radio",
"checkbox" ],
function() {
7868 jQuery.valHooks[ this ] = {
7869 set:
function( elem, value ) {
7870 if ( jQuery.isArray( value ) ) {
7871 return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
7875 if ( !support.checkOn ) {
7876 jQuery.valHooks[ this ].get =
function( elem ) {
7879 return elem.getAttribute(
"value") === null ?
"on" : elem.value;
7887 var nodeHook, boolHook,
7888 attrHandle = jQuery.expr.attrHandle,
7889 ruseDefault = /^(?:checked|selected)$/i,
7890 getSetAttribute = support.getSetAttribute,
7891 getSetInput = support.input;
7894 attr: function( name, value ) {
7895 return access( this, jQuery.attr, name, value, arguments.length > 1 );
7898 removeAttr:
function( name ) {
7899 return this.each(function() {
7900 jQuery.removeAttr( this, name );
7906 attr:
function( elem, name, value ) {
7908 nType = elem.nodeType;
7911 if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
7916 if ( typeof elem.getAttribute === strundefined ) {
7917 return jQuery.prop( elem, name, value );
7922 if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7923 name = name.toLowerCase();
7924 hooks = jQuery.attrHooks[ name ] ||
7925 ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
7928 if ( value !== undefined ) {
7930 if ( value === null ) {
7931 jQuery.removeAttr( elem, name );
7933 }
else if ( hooks &&
"set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
7937 elem.setAttribute( name, value +
"" );
7941 }
else if ( hooks &&
"get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
7945 ret = jQuery.find.attr( elem, name );
7948 return ret == null ?
7954 removeAttr:
function( elem, value ) {
7957 attrNames = value && value.match( rnotwhite );
7959 if ( attrNames && elem.nodeType === 1 ) {
7960 while ( (name = attrNames[i++]) ) {
7961 propName = jQuery.propFix[ name ] || name;
7964 if ( jQuery.expr.match.bool.test( name ) ) {
7966 if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
7967 elem[ propName ] =
false;
7971 elem[ jQuery.camelCase(
"default-" + name ) ] =
7972 elem[ propName ] =
false;
7977 jQuery.attr( elem, name,
"" );
7980 elem.removeAttribute( getSetAttribute ? name : propName );
7987 set:
function( elem, value ) {
7988 if ( !support.radioValue && value ===
"radio" && jQuery.nodeName(elem,
"input") ) {
7991 var val = elem.value;
7992 elem.setAttribute(
"type", value );
8005 set:
function( elem, value, name ) {
8006 if ( value ===
false ) {
8008 jQuery.removeAttr( elem, name );
8009 }
else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
8011 elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );
8015 elem[ jQuery.camelCase(
"default-" + name ) ] = elem[ name ] =
true;
8023 jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ),
function( i, name ) {
8025 var getter = attrHandle[ name ] || jQuery.find.attr;
8027 attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?
8028 function( elem, name, isXML ) {
8032 handle = attrHandle[ name ];
8033 attrHandle[ name ] = ret;
8034 ret = getter( elem, name, isXML ) != null ?
8035 name.toLowerCase() :
8037 attrHandle[ name ] = handle;
8041 function( elem, name, isXML ) {
8043 return elem[ jQuery.camelCase(
"default-" + name ) ] ?
8044 name.toLowerCase() :
8051 if ( !getSetInput || !getSetAttribute ) {
8052 jQuery.attrHooks.value = {
8053 set:
function( elem, value, name ) {
8054 if ( jQuery.nodeName( elem,
"input" ) ) {
8056 elem.defaultValue = value;
8059 return nodeHook && nodeHook.set( elem, value, name );
8066 if ( !getSetAttribute ) {
8071 set:
function( elem, value, name ) {
8073 var ret = elem.getAttributeNode( name );
8075 elem.setAttributeNode(
8076 (ret = elem.ownerDocument.createAttribute( name ))
8080 ret.value = value +=
"";
8083 if ( name ===
"value" || value === elem.getAttribute( name ) ) {
8090 attrHandle.id = attrHandle.name = attrHandle.coords =
8091 function( elem, name, isXML ) {
8094 return (ret = elem.getAttributeNode( name )) && ret.value !==
"" ?
8101 jQuery.valHooks.button = {
8102 get:
function( elem, name ) {
8103 var ret = elem.getAttributeNode( name );
8104 if ( ret && ret.specified ) {
8113 jQuery.attrHooks.contenteditable = {
8114 set:
function( elem, value, name ) {
8115 nodeHook.set( elem, value ===
"" ?
false : value, name );
8121 jQuery.each([
"width",
"height" ],
function( i, name ) {
8122 jQuery.attrHooks[ name ] = {
8123 set:
function( elem, value ) {
8124 if ( value ===
"" ) {
8125 elem.setAttribute( name,
"auto" );
8133 if ( !support.style ) {
8134 jQuery.attrHooks.style = {
8135 get:
function( elem ) {
8139 return elem.style.cssText || undefined;
8141 set:
function( elem, value ) {
8142 return ( elem.style.cssText = value +
"" );
8150 var rfocusable = /^(?:input|select|textarea|button|object)$/i,
8151 rclickable = /^(?:a|area)$/i;
8154 prop:
function( name, value ) {
8155 return access(
this, jQuery.prop, name, value, arguments.length > 1 );
8158 removeProp:
function( name ) {
8159 name = jQuery.propFix[ name ] || name;
8160 return this.each(
function() {
8163 this[ name ] = undefined;
8164 delete this[ name ];
8173 "class":
"className" 8176 prop:
function( elem, name, value ) {
8177 var ret, hooks, notxml,
8178 nType = elem.nodeType;
8181 if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
8185 notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
8189 name = jQuery.propFix[ name ] || name;
8190 hooks = jQuery.propHooks[ name ];
8193 if ( value !== undefined ) {
8194 return hooks &&
"set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
8196 ( elem[ name ] = value );
8199 return hooks &&
"get" in hooks && (ret = hooks.get( elem, name )) !== null ?
8207 get:
function( elem ) {
8211 var tabindex = jQuery.find.attr( elem,
"tabindex" );
8214 parseInt( tabindex, 10 ) :
8215 rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
8225 if ( !support.hrefNormalized ) {
8227 jQuery.each([
"href",
"src" ],
function( i, name ) {
8228 jQuery.propHooks[ name ] = {
8229 get:
function( elem ) {
8230 return elem.getAttribute( name, 4 );
8239 if ( !support.optSelected ) {
8240 jQuery.propHooks.selected = {
8241 get:
function( elem ) {
8242 var parent = elem.parentNode;
8245 parent.selectedIndex;
8248 if ( parent.parentNode ) {
8249 parent.parentNode.selectedIndex;
8269 jQuery.propFix[ this.toLowerCase() ] =
this;
8273 if ( !support.enctype ) {
8274 jQuery.propFix.enctype =
"encoding";
8280 var rclass = /[\t\r\n\f]/g;
8283 addClass:
function( value ) {
8284 var classes, elem, cur, clazz, j, finalValue,
8287 proceed = typeof value ===
"string" && value;
8289 if ( jQuery.isFunction( value ) ) {
8290 return this.each(
function( j ) {
8291 jQuery(
this ).addClass( value.call(
this, j,
this.className ) );
8297 classes = ( value ||
"" ).match( rnotwhite ) || [];
8299 for ( ; i < len; i++ ) {
8301 cur = elem.nodeType === 1 && ( elem.className ?
8302 (
" " + elem.className +
" " ).replace( rclass,
" " ) :
8308 while ( (clazz = classes[j++]) ) {
8309 if ( cur.indexOf(
" " + clazz +
" " ) < 0 ) {
8315 finalValue = jQuery.trim( cur );
8316 if ( elem.className !== finalValue ) {
8317 elem.className = finalValue;
8326 removeClass:
function( value ) {
8327 var classes, elem, cur, clazz, j, finalValue,
8330 proceed = arguments.length === 0 || typeof value ===
"string" && value;
8332 if ( jQuery.isFunction( value ) ) {
8333 return this.each(
function( j ) {
8334 jQuery(
this ).removeClass( value.call(
this, j,
this.className ) );
8338 classes = ( value ||
"" ).match( rnotwhite ) || [];
8340 for ( ; i < len; i++ ) {
8343 cur = elem.nodeType === 1 && ( elem.className ?
8344 (
" " + elem.className +
" " ).replace( rclass,
" " ) :
8350 while ( (clazz = classes[j++]) ) {
8352 while ( cur.indexOf(
" " + clazz +
" " ) >= 0 ) {
8353 cur = cur.replace(
" " + clazz +
" ",
" " );
8358 finalValue = value ? jQuery.trim( cur ) :
"";
8359 if ( elem.className !== finalValue ) {
8360 elem.className = finalValue;
8369 toggleClass:
function( value, stateVal ) {
8370 var type = typeof value;
8372 if ( typeof stateVal ===
"boolean" && type ===
"string" ) {
8373 return stateVal ? this.addClass( value ) : this.removeClass( value );
8376 if ( jQuery.isFunction( value ) ) {
8377 return this.each(
function( i ) {
8378 jQuery(
this ).toggleClass( value.call(
this, i,
this.className, stateVal), stateVal );
8382 return this.each(
function() {
8383 if ( type ===
"string" ) {
8387 self = jQuery(
this ),
8388 classNames = value.match( rnotwhite ) || [];
8390 while ( (className = classNames[ i++ ]) ) {
8392 if (
self.hasClass( className ) ) {
8393 self.removeClass( className );
8395 self.addClass( className );
8400 }
else if ( type === strundefined || type ===
"boolean" ) {
8401 if ( this.className ) {
8403 jQuery._data(
this,
"__className__", this.className );
8410 this.className = this.className || value ===
false ?
"" : jQuery._data(
this,
"__className__" ) ||
"";
8415 hasClass:
function( selector ) {
8416 var className =
" " + selector +
" ",
8419 for ( ; i < l; i++ ) {
8420 if (
this[i].nodeType === 1 && (
" " +
this[i].className +
" ").replace(rclass,
" ").indexOf( className ) >= 0 ) {
8435 jQuery.each( (
"blur focus focusin focusout load resize scroll unload click dblclick " +
8436 "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
8437 "change select submit keydown keypress keyup error contextmenu").split(
" "),
function( i, name ) {
8440 jQuery.fn[ name ] =
function( data, fn ) {
8441 return arguments.length > 0 ?
8442 this.on( name, null, data, fn ) :
8443 this.trigger( name );
8448 hover:
function( fnOver, fnOut ) {
8449 return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
8452 bind:
function( types, data, fn ) {
8453 return this.on( types, null, data, fn );
8455 unbind:
function( types, fn ) {
8456 return this.off( types, null, fn );
8459 delegate:
function( selector, types, data, fn ) {
8460 return this.on( types, selector, data, fn );
8462 undelegate:
function( selector, types, fn ) {
8464 return arguments.length === 1 ? this.off( selector,
"**" ) : this.off( types, selector ||
"**", fn );
8469 var nonce = jQuery.now();
8471 var rquery = (/\?/);
8475 var rvalidtokens = /(,)|(\[|{)|(}|])|
"(?:[^"\\\r\n]|\\[
"\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|
true|
false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
8477 jQuery.parseJSON =
function( data ) {
8479 if ( window.JSON && window.JSON.parse ) {
8482 return window.JSON.parse( data +
"" );
8485 var requireNonComma,
8487 str = jQuery.trim( data +
"" );
8491 return str && !jQuery.trim( str.replace( rvalidtokens,
function( token, comma, open, close ) {
8494 if ( requireNonComma && comma ) {
8499 if ( depth === 0 ) {
8504 requireNonComma = open || comma;
8510 depth += !close - !open;
8515 ( Function(
"return " + str ) )() :
8516 jQuery.error(
"Invalid JSON: " + data );
8521 jQuery.parseXML =
function( data ) {
8523 if ( !data || typeof data !==
"string" ) {
8527 if ( window.DOMParser ) {
8528 tmp =
new DOMParser();
8529 xml = tmp.parseFromString( data,
"text/xml" );
8531 xml =
new ActiveXObject(
"Microsoft.XMLDOM" );
8532 xml.async =
"false";
8533 xml.loadXML( data );
8538 if ( !xml || !xml.documentElement || xml.getElementsByTagName(
"parsererror" ).length ) {
8539 jQuery.error(
"Invalid XML: " + data );
8551 rts = /([?&])_=[^&]*/,
8552 rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg,
8554 rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
8555 rnoContent = /^(?:GET|HEAD)$/,
8557 rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
8578 allTypes =
"*/".concat(
"*");
8583 ajaxLocation = location.href;
8587 ajaxLocation = document.createElement(
"a" );
8588 ajaxLocation.href =
"";
8589 ajaxLocation = ajaxLocation.href;
8593 ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
8596 function addToPrefiltersOrTransports( structure ) {
8599 return function( dataTypeExpression, func ) {
8601 if ( typeof dataTypeExpression !==
"string" ) {
8602 func = dataTypeExpression;
8603 dataTypeExpression =
"*";
8608 dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
8610 if ( jQuery.isFunction( func ) ) {
8612 while ( (dataType = dataTypes[i++]) ) {
8614 if ( dataType.charAt( 0 ) ===
"+" ) {
8615 dataType = dataType.slice( 1 ) ||
"*";
8616 (structure[ dataType ] = structure[ dataType ] || []).unshift( func );
8620 (structure[ dataType ] = structure[ dataType ] || []).push( func );
8628 function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
8631 seekingTransport = ( structure === transports );
8633 function inspect( dataType ) {
8635 inspected[ dataType ] =
true;
8636 jQuery.each( structure[ dataType ] || [],
function( _, prefilterOrFactory ) {
8637 var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
8638 if ( typeof dataTypeOrTransport ===
"string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
8639 options.dataTypes.unshift( dataTypeOrTransport );
8640 inspect( dataTypeOrTransport );
8642 }
else if ( seekingTransport ) {
8643 return !( selected = dataTypeOrTransport );
8649 return inspect( options.dataTypes[ 0 ] ) || !inspected[
"*" ] && inspect(
"*" );
8655 function ajaxExtend( target, src ) {
8657 flatOptions = jQuery.ajaxSettings.flatOptions || {};
8659 for ( key in src ) {
8660 if ( src[ key ] !== undefined ) {
8661 ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
8665 jQuery.extend(
true, target, deep );
8675 function ajaxHandleResponses( s, jqXHR, responses ) {
8676 var firstDataType, ct, finalDataType, type,
8677 contents = s.contents,
8678 dataTypes = s.dataTypes;
8681 while ( dataTypes[ 0 ] ===
"*" ) {
8683 if ( ct === undefined ) {
8684 ct = s.mimeType || jqXHR.getResponseHeader(
"Content-Type");
8690 for ( type in contents ) {
8691 if ( contents[ type ] && contents[ type ].test( ct ) ) {
8692 dataTypes.unshift( type );
8699 if ( dataTypes[ 0 ] in responses ) {
8700 finalDataType = dataTypes[ 0 ];
8703 for ( type in responses ) {
8704 if ( !dataTypes[ 0 ] || s.converters[ type +
" " + dataTypes[0] ] ) {
8705 finalDataType = type;
8708 if ( !firstDataType ) {
8709 firstDataType = type;
8713 finalDataType = finalDataType || firstDataType;
8719 if ( finalDataType ) {
8720 if ( finalDataType !== dataTypes[ 0 ] ) {
8721 dataTypes.unshift( finalDataType );
8723 return responses[ finalDataType ];
8730 function ajaxConvert( s, response, jqXHR, isSuccess ) {
8731 var conv2, current, conv, tmp, prev,
8734 dataTypes = s.dataTypes.slice();
8737 if ( dataTypes[ 1 ] ) {
8738 for ( conv in s.converters ) {
8739 converters[ conv.toLowerCase() ] = s.converters[ conv ];
8743 current = dataTypes.shift();
8748 if ( s.responseFields[ current ] ) {
8749 jqXHR[ s.responseFields[ current ] ] = response;
8753 if ( !prev && isSuccess && s.dataFilter ) {
8754 response = s.dataFilter( response, s.dataType );
8758 current = dataTypes.shift();
8763 if ( current ===
"*" ) {
8768 }
else if ( prev !==
"*" && prev !== current ) {
8771 conv = converters[ prev +
" " + current ] || converters[
"* " + current ];
8775 for ( conv2 in converters ) {
8778 tmp = conv2.split(
" " );
8779 if ( tmp[ 1 ] === current ) {
8782 conv = converters[ prev +
" " + tmp[ 0 ] ] ||
8783 converters[
"* " + tmp[ 0 ] ];
8786 if ( conv ===
true ) {
8787 conv = converters[ conv2 ];
8790 }
else if ( converters[ conv2 ] !==
true ) {
8792 dataTypes.unshift( tmp[ 1 ] );
8801 if ( conv !==
true ) {
8804 if ( conv && s[
"throws" ] ) {
8805 response = conv( response );
8808 response = conv( response );
8810 return { state:
"parsererror", error: conv ? e :
"No conversion from " + prev +
" to " + current };
8818 return { state:
"success", data: response };
8833 isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
8837 contentType:
"application/x-www-form-urlencoded; charset=UTF-8",
8854 xml:
"application/xml, text/xml",
8855 json:
"application/json, text/javascript" 8866 text:
"responseText",
8867 json:
"responseJSON" 8881 "text json": jQuery.parseJSON,
8884 "text xml": jQuery.parseXML
8900 ajaxSetup:
function( target, settings ) {
8904 ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
8907 ajaxExtend( jQuery.ajaxSettings, target );
8910 ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
8911 ajaxTransport: addToPrefiltersOrTransports( transports ),
8914 ajax:
function( url, options ) {
8917 if ( typeof url ===
"object" ) {
8923 options = options || {};
8932 responseHeadersString,
8943 s = jQuery.ajaxSetup( {}, options ),
8945 callbackContext = s.context || s,
8947 globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
8948 jQuery( callbackContext ) :
8951 deferred = jQuery.Deferred(),
8952 completeDeferred = jQuery.Callbacks(
"once memory"),
8954 statusCode = s.statusCode || {},
8956 requestHeaders = {},
8957 requestHeadersNames = {},
8961 strAbort =
"canceled",
8967 getResponseHeader:
function( key ) {
8969 if ( state === 2 ) {
8970 if ( !responseHeaders ) {
8971 responseHeaders = {};
8972 while ( (match = rheaders.exec( responseHeadersString )) ) {
8973 responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
8976 match = responseHeaders[ key.toLowerCase() ];
8978 return match == null ? null : match;
8982 getAllResponseHeaders:
function() {
8983 return state === 2 ? responseHeadersString : null;
8987 setRequestHeader:
function( name, value ) {
8988 var lname = name.toLowerCase();
8990 name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
8991 requestHeaders[ name ] = value;
8997 overrideMimeType:
function( type ) {
9005 statusCode:
function( map ) {
9009 for ( code in map ) {
9011 statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
9015 jqXHR.always( map[ jqXHR.status ] );
9022 abort:
function( statusText ) {
9023 var finalText = statusText || strAbort;
9025 transport.abort( finalText );
9027 done( 0, finalText );
9033 deferred.promise( jqXHR ).complete = completeDeferred.add;
9034 jqXHR.success = jqXHR.done;
9035 jqXHR.error = jqXHR.fail;
9041 s.url = ( ( url || s.url || ajaxLocation ) +
"" ).replace( rhash,
"" ).replace( rprotocol, ajaxLocParts[ 1 ] +
"//" );
9044 s.type = options.method || options.type || s.method || s.type;
9047 s.dataTypes = jQuery.trim( s.dataType ||
"*" ).toLowerCase().match( rnotwhite ) || [
"" ];
9050 if ( s.crossDomain == null ) {
9051 parts = rurl.exec( s.url.toLowerCase() );
9052 s.crossDomain = !!( parts &&
9053 ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
9054 ( parts[ 3 ] || ( parts[ 1 ] ===
"http:" ?
"80" :
"443" ) ) !==
9055 ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] ===
"http:" ?
"80" :
"443" ) ) )
9060 if ( s.data && s.processData && typeof s.data !==
"string" ) {
9061 s.data = jQuery.param( s.data, s.traditional );
9065 inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
9068 if ( state === 2 ) {
9073 fireGlobals = s.global;
9076 if ( fireGlobals && jQuery.active++ === 0 ) {
9077 jQuery.event.trigger(
"ajaxStart");
9081 s.type = s.type.toUpperCase();
9084 s.hasContent = !rnoContent.test( s.type );
9091 if ( !s.hasContent ) {
9095 cacheURL = ( s.url += ( rquery.test( cacheURL ) ?
"&" :
"?" ) + s.data );
9101 if ( s.cache ===
false ) {
9102 s.url = rts.test( cacheURL ) ?
9105 cacheURL.replace( rts,
"$1_=" + nonce++ ) :
9108 cacheURL + ( rquery.test( cacheURL ) ?
"&" :
"?" ) +
"_=" + nonce++;
9113 if ( s.ifModified ) {
9114 if ( jQuery.lastModified[ cacheURL ] ) {
9115 jqXHR.setRequestHeader(
"If-Modified-Since", jQuery.lastModified[ cacheURL ] );
9117 if ( jQuery.etag[ cacheURL ] ) {
9118 jqXHR.setRequestHeader(
"If-None-Match", jQuery.etag[ cacheURL ] );
9123 if ( s.data && s.hasContent && s.contentType !==
false || options.contentType ) {
9124 jqXHR.setRequestHeader(
"Content-Type", s.contentType );
9128 jqXHR.setRequestHeader(
9130 s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
9131 s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !==
"*" ?
", " + allTypes +
"; q=0.01" :
"" ) :
9136 for ( i in s.headers ) {
9137 jqXHR.setRequestHeader( i, s.headers[ i ] );
9141 if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) ===
false || state === 2 ) ) {
9143 return jqXHR.abort();
9150 for ( i in { success: 1, error: 1, complete: 1 } ) {
9151 jqXHR[ i ]( s[ i ] );
9155 transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
9159 done( -1,
"No Transport" );
9161 jqXHR.readyState = 1;
9164 if ( fireGlobals ) {
9165 globalEventContext.trigger(
"ajaxSend", [ jqXHR, s ] );
9168 if ( s.async && s.timeout > 0 ) {
9169 timeoutTimer = setTimeout(
function() {
9170 jqXHR.abort(
"timeout");
9176 transport.send( requestHeaders, done );
9189 function done( status, nativeStatusText, responses, headers ) {
9190 var isSuccess, success, error, response, modified,
9191 statusText = nativeStatusText;
9194 if ( state === 2 ) {
9202 if ( timeoutTimer ) {
9203 clearTimeout( timeoutTimer );
9208 transport = undefined;
9211 responseHeadersString = headers ||
"";
9214 jqXHR.readyState = status > 0 ? 4 : 0;
9217 isSuccess = status >= 200 && status < 300 || status === 304;
9221 response = ajaxHandleResponses( s, jqXHR, responses );
9225 response = ajaxConvert( s, response, jqXHR, isSuccess );
9231 if ( s.ifModified ) {
9232 modified = jqXHR.getResponseHeader(
"Last-Modified");
9234 jQuery.lastModified[ cacheURL ] = modified;
9236 modified = jqXHR.getResponseHeader(
"etag");
9238 jQuery.etag[ cacheURL ] = modified;
9243 if ( status === 204 || s.type ===
"HEAD" ) {
9244 statusText =
"nocontent";
9247 }
else if ( status === 304 ) {
9248 statusText =
"notmodified";
9252 statusText = response.state;
9253 success = response.data;
9254 error = response.error;
9261 if ( status || !statusText ) {
9262 statusText =
"error";
9270 jqXHR.status = status;
9271 jqXHR.statusText = ( nativeStatusText || statusText ) +
"";
9275 deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
9277 deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
9281 jqXHR.statusCode( statusCode );
9282 statusCode = undefined;
9284 if ( fireGlobals ) {
9285 globalEventContext.trigger( isSuccess ?
"ajaxSuccess" :
"ajaxError",
9286 [ jqXHR, s, isSuccess ? success : error ] );
9290 completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
9292 if ( fireGlobals ) {
9293 globalEventContext.trigger(
"ajaxComplete", [ jqXHR, s ] );
9295 if ( !( --jQuery.active ) ) {
9296 jQuery.event.trigger(
"ajaxStop");
9304 getJSON:
function( url, data, callback ) {
9305 return jQuery.get( url, data, callback,
"json" );
9308 getScript:
function( url, callback ) {
9309 return jQuery.get( url, undefined, callback,
"script" );
9313 jQuery.each( [
"get",
"post" ],
function( i, method ) {
9314 jQuery[ method ] =
function( url, data, callback, type ) {
9316 if ( jQuery.isFunction( data ) ) {
9317 type = type || callback;
9322 return jQuery.ajax({
9333 jQuery.each( [
"ajaxStart",
"ajaxStop",
"ajaxComplete",
"ajaxError",
"ajaxSuccess",
"ajaxSend" ],
function( i, type ) {
9334 jQuery.fn[ type ] =
function( fn ) {
9335 return this.on( type, fn );
9340 jQuery._evalUrl =
function( url ) {
9341 return jQuery.ajax({
9353 wrapAll:
function( html ) {
9354 if ( jQuery.isFunction( html ) ) {
9355 return this.each(
function(i) {
9356 jQuery(
this).wrapAll( html.call(
this, i) );
9362 var wrap = jQuery( html,
this[0].ownerDocument ).eq(0).clone(
true);
9364 if (
this[0].parentNode ) {
9365 wrap.insertBefore(
this[0] );
9368 wrap.map(
function() {
9371 while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
9372 elem = elem.firstChild;
9382 wrapInner:
function( html ) {
9383 if ( jQuery.isFunction( html ) ) {
9384 return this.each(
function(i) {
9385 jQuery(
this).wrapInner( html.call(
this, i) );
9389 return this.each(
function() {
9390 var
self = jQuery(
this ),
9391 contents =
self.contents();
9393 if ( contents.length ) {
9394 contents.wrapAll( html );
9397 self.append( html );
9402 wrap:
function( html ) {
9403 var isFunction = jQuery.isFunction( html );
9405 return this.each(
function(i) {
9406 jQuery(
this ).wrapAll( isFunction ? html.call(
this, i) : html );
9410 unwrap:
function() {
9411 return this.parent().each(
function() {
9412 if ( !jQuery.nodeName(
this,
"body" ) ) {
9413 jQuery(
this ).replaceWith( this.childNodes );
9420 jQuery.expr.filters.hidden =
function( elem ) {
9423 return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||
9424 (!support.reliableHiddenOffsets() &&
9425 ((elem.style && elem.style.display) || jQuery.css( elem,
"display" )) ===
"none");
9428 jQuery.expr.filters.visible =
function( elem ) {
9429 return !jQuery.expr.filters.hidden( elem );
9438 rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
9439 rsubmittable = /^(?:input|select|textarea|keygen)/i;
9441 function buildParams( prefix, obj, traditional, add ) {
9444 if ( jQuery.isArray( obj ) ) {
9446 jQuery.each( obj,
function( i, v ) {
9447 if ( traditional || rbracket.test( prefix ) ) {
9453 buildParams( prefix +
"[" + ( typeof v ===
"object" ? i :
"" ) +
"]", v, traditional, add );
9457 }
else if ( !traditional && jQuery.type( obj ) ===
"object" ) {
9459 for ( name in obj ) {
9460 buildParams( prefix +
"[" + name +
"]", obj[ name ], traditional, add );
9471 jQuery.param =
function( a, traditional ) {
9474 add =
function( key, value ) {
9476 value = jQuery.isFunction( value ) ? value() : ( value == null ?
"" : value );
9477 s[ s.length ] = encodeURIComponent( key ) +
"=" + encodeURIComponent( value );
9481 if ( traditional === undefined ) {
9482 traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
9486 if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
9488 jQuery.each( a,
function() {
9489 add( this.name, this.value );
9495 for ( prefix in a ) {
9496 buildParams( prefix, a[ prefix ], traditional, add );
9501 return s.join(
"&" ).replace( r20,
"+" );
9505 serialize:
function() {
9506 return jQuery.param( this.serializeArray() );
9508 serializeArray:
function() {
9509 return this.map(
function() {
9511 var elements = jQuery.prop(
this,
"elements" );
9512 return elements ? jQuery.makeArray( elements ) :
this;
9514 .filter(
function() {
9515 var type = this.type;
9517 return this.name && !jQuery(
this ).is(
":disabled" ) &&
9518 rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
9519 ( this.checked || !rcheckableType.test( type ) );
9521 .map(
function( i, elem ) {
9522 var val = jQuery(
this ).val();
9524 return val == null ?
9526 jQuery.isArray( val ) ?
9527 jQuery.map( val,
function( val ) {
9528 return { name: elem.name, value: val.replace( rCRLF,
"\r\n" ) };
9530 { name: elem.name, value: val.replace( rCRLF,
"\r\n" ) };
9538 jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?
9543 return !this.isLocal &&
9551 /^(
get|post|head|put|
delete|options)$/i.test(
this.type ) &&
9553 createStandardXHR() || createActiveXHR();
9560 xhrSupported = jQuery.ajaxSettings.xhr();
9564 if ( window.ActiveXObject ) {
9565 jQuery( window ).on(
"unload",
function() {
9566 for ( var key in xhrCallbacks ) {
9567 xhrCallbacks[ key ]( undefined, true );
9573 support.cors = !!xhrSupported && (
"withCredentials" in xhrSupported );
9574 xhrSupported = support.ajax = !!xhrSupported;
9577 if ( xhrSupported ) {
9579 jQuery.ajaxTransport(
function( options ) {
9581 if ( !options.crossDomain || support.cors ) {
9586 send: function( headers, complete ) {
9588 xhr = options.xhr(),
9592 xhr.open( options.type, options.url, options.async, options.username, options.password );
9595 if ( options.xhrFields ) {
9596 for ( i in options.xhrFields ) {
9597 xhr[ i ] = options.xhrFields[ i ];
9602 if ( options.mimeType && xhr.overrideMimeType ) {
9603 xhr.overrideMimeType( options.mimeType );
9611 if ( !options.crossDomain && !headers[
"X-Requested-With"] ) {
9612 headers[
"X-Requested-With"] =
"XMLHttpRequest";
9616 for ( i in headers ) {
9623 if ( headers[ i ] !== undefined ) {
9624 xhr.setRequestHeader( i, headers[ i ] +
"" );
9631 xhr.send( ( options.hasContent && options.data ) || null );
9634 callback = function( _, isAbort ) {
9635 var status, statusText, responses;
9638 if ( callback && ( isAbort || xhr.readyState === 4 ) ) {
9640 delete xhrCallbacks[ id ];
9641 callback = undefined;
9642 xhr.onreadystatechange = jQuery.noop;
9646 if ( xhr.readyState !== 4 ) {
9651 status = xhr.status;
9656 if ( typeof xhr.responseText ===
"string" ) {
9657 responses.text = xhr.responseText;
9663 statusText = xhr.statusText;
9674 if ( !status && options.isLocal && !options.crossDomain ) {
9675 status = responses.text ? 200 : 404;
9677 } else if ( status === 1223 ) {
9685 complete( status, statusText, responses, xhr.getAllResponseHeaders() );
9689 if ( !options.async ) {
9692 } else if ( xhr.readyState === 4 ) {
9695 setTimeout( callback );
9698 xhr.onreadystatechange = xhrCallbacks[ id ] = callback;
9704 callback( undefined, true );
9713 function createStandardXHR() {
9715 return new window.XMLHttpRequest();
9719 function createActiveXHR() {
9721 return new window.ActiveXObject(
"Microsoft.XMLHTTP" );
9731 script:
"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" 9734 script: /(?:java|ecma)script/
9737 "text script":
function( text ) {
9738 jQuery.globalEval( text );
9745 jQuery.ajaxPrefilter(
"script",
function( s ) {
9746 if ( s.cache === undefined ) {
9749 if ( s.crossDomain ) {
9756 jQuery.ajaxTransport(
"script",
function(s) {
9759 if ( s.crossDomain ) {
9762 head = document.head || jQuery(
"head")[0] || document.documentElement;
9766 send: function( _, callback ) {
9768 script = document.createElement(
"script");
9770 script.async = true;
9772 if ( s.scriptCharset ) {
9773 script.charset = s.scriptCharset;
9779 script.onload = script.onreadystatechange = function( _, isAbort ) {
9781 if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {
9784 script.onload = script.onreadystatechange = null;
9787 if ( script.parentNode ) {
9788 script.parentNode.removeChild( script );
9796 callback( 200,
"success" );
9803 head.insertBefore( script, head.firstChild );
9808 script.onload( undefined, true );
9818 var oldCallbacks = [],
9819 rjsonp = /(=)\?(?=&|$)|\?\?/;
9824 jsonpCallback:
function() {
9825 var callback = oldCallbacks.pop() || ( jQuery.expando +
"_" + ( nonce++ ) );
9826 this[ callback ] =
true;
9832 jQuery.ajaxPrefilter(
"json jsonp",
function( s, originalSettings, jqXHR ) {
9834 var callbackName, overwritten, responseContainer,
9835 jsonProp = s.jsonp !==
false && ( rjsonp.test( s.url ) ?
9837 typeof s.data ===
"string" && !( s.contentType ||
"" ).indexOf(
"application/x-www-form-urlencoded") && rjsonp.test( s.data ) &&
"data" 9841 if ( jsonProp || s.dataTypes[ 0 ] ===
"jsonp" ) {
9844 callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
9850 s[ jsonProp ] = s[ jsonProp ].replace( rjsonp,
"$1" + callbackName );
9851 }
else if ( s.jsonp !==
false ) {
9852 s.url += ( rquery.test( s.url ) ?
"&" :
"?" ) + s.jsonp +
"=" + callbackName;
9856 s.converters[
"script json"] =
function() {
9857 if ( !responseContainer ) {
9858 jQuery.error( callbackName +
" was not called" );
9860 return responseContainer[ 0 ];
9864 s.dataTypes[ 0 ] =
"json";
9867 overwritten = window[ callbackName ];
9868 window[ callbackName ] =
function() {
9869 responseContainer = arguments;
9873 jqXHR.always(
function() {
9875 window[ callbackName ] = overwritten;
9878 if ( s[ callbackName ] ) {
9880 s.jsonpCallback = originalSettings.jsonpCallback;
9883 oldCallbacks.push( callbackName );
9887 if ( responseContainer && jQuery.isFunction( overwritten ) ) {
9888 overwritten( responseContainer[ 0 ] );
9891 responseContainer = overwritten = undefined;
9905 jQuery.parseHTML =
function( data, context, keepScripts ) {
9906 if ( !data || typeof data !==
"string" ) {
9909 if ( typeof context ===
"boolean" ) {
9910 keepScripts = context;
9913 context = context || document;
9915 var parsed = rsingleTag.exec( data ),
9916 scripts = !keepScripts && [];
9920 return [ context.createElement( parsed[1] ) ];
9923 parsed = jQuery.buildFragment( [ data ], context, scripts );
9925 if ( scripts && scripts.length ) {
9926 jQuery( scripts ).remove();
9929 return jQuery.merge( [], parsed.childNodes );
9934 var _load = jQuery.fn.load;
9939 jQuery.fn.load =
function( url, params, callback ) {
9940 if ( typeof url !==
"string" && _load ) {
9941 return _load.apply(
this, arguments );
9944 var selector, response, type,
9946 off = url.indexOf(
" ");
9949 selector = jQuery.trim( url.slice( off, url.length ) );
9950 url = url.slice( 0, off );
9954 if ( jQuery.isFunction( params ) ) {
9961 }
else if ( params && typeof params ===
"object" ) {
9966 if (
self.length > 0 ) {
9974 }).done(
function( responseText ) {
9977 response = arguments;
9979 self.html( selector ?
9983 jQuery(
"<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
9988 }).complete( callback &&
function( jqXHR, status ) {
9989 self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
9999 jQuery.expr.filters.animated =
function( elem ) {
10000 return jQuery.grep(jQuery.timers,
function( fn ) {
10001 return elem === fn.elem;
10009 var docElem = window.document.documentElement;
10014 function getWindow( elem ) {
10015 return jQuery.isWindow( elem ) ?
10017 elem.nodeType === 9 ?
10018 elem.defaultView || elem.parentWindow :
10023 setOffset:
function( elem, options, i ) {
10024 var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
10025 position = jQuery.css( elem,
"position" ),
10026 curElem = jQuery( elem ),
10030 if ( position ===
"static" ) {
10031 elem.style.position =
"relative";
10034 curOffset = curElem.offset();
10035 curCSSTop = jQuery.css( elem,
"top" );
10036 curCSSLeft = jQuery.css( elem,
"left" );
10037 calculatePosition = ( position ===
"absolute" || position ===
"fixed" ) &&
10038 jQuery.inArray(
"auto", [ curCSSTop, curCSSLeft ] ) > -1;
10041 if ( calculatePosition ) {
10042 curPosition = curElem.position();
10043 curTop = curPosition.top;
10044 curLeft = curPosition.left;
10046 curTop = parseFloat( curCSSTop ) || 0;
10047 curLeft = parseFloat( curCSSLeft ) || 0;
10050 if ( jQuery.isFunction( options ) ) {
10051 options = options.call( elem, i, curOffset );
10054 if ( options.top != null ) {
10055 props.top = ( options.top - curOffset.top ) + curTop;
10057 if ( options.left != null ) {
10058 props.left = ( options.left - curOffset.left ) + curLeft;
10061 if (
"using" in options ) {
10062 options.using.call( elem, props );
10064 curElem.css( props );
10070 offset:
function( options ) {
10071 if ( arguments.length ) {
10072 return options === undefined ?
10074 this.each(
function( i ) {
10075 jQuery.offset.setOffset(
this, options, i );
10080 box = { top: 0, left: 0 },
10082 doc = elem && elem.ownerDocument;
10088 docElem = doc.documentElement;
10091 if ( !jQuery.contains( docElem, elem ) ) {
10097 if ( typeof elem.getBoundingClientRect !== strundefined ) {
10098 box = elem.getBoundingClientRect();
10100 win = getWindow( doc );
10102 top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ),
10103 left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )
10107 position:
function() {
10108 if ( !
this[ 0 ] ) {
10112 var offsetParent, offset,
10113 parentOffset = { top: 0, left: 0 },
10117 if ( jQuery.css( elem,
"position" ) ===
"fixed" ) {
10119 offset = elem.getBoundingClientRect();
10122 offsetParent = this.offsetParent();
10125 offset = this.offset();
10126 if ( !jQuery.nodeName( offsetParent[ 0 ],
"html" ) ) {
10127 parentOffset = offsetParent.offset();
10131 parentOffset.top += jQuery.css( offsetParent[ 0 ],
"borderTopWidth",
true );
10132 parentOffset.left += jQuery.css( offsetParent[ 0 ],
"borderLeftWidth",
true );
10139 top: offset.top - parentOffset.top - jQuery.css( elem,
"marginTop",
true ),
10140 left: offset.left - parentOffset.left - jQuery.css( elem,
"marginLeft",
true)
10144 offsetParent:
function() {
10145 return this.map(
function() {
10146 var offsetParent = this.offsetParent || docElem;
10148 while ( offsetParent && ( !jQuery.nodeName( offsetParent,
"html" ) && jQuery.css( offsetParent,
"position" ) ===
"static" ) ) {
10149 offsetParent = offsetParent.offsetParent;
10151 return offsetParent || docElem;
10157 jQuery.each( { scrollLeft:
"pageXOffset", scrollTop:
"pageYOffset" },
function( method, prop ) {
10158 var top = /Y/.test( prop );
10160 jQuery.fn[ method ] =
function( val ) {
10161 return access(
this,
function( elem, method, val ) {
10162 var win = getWindow( elem );
10164 if ( val === undefined ) {
10165 return win ? (prop in win) ? win[ prop ] :
10166 win.document.documentElement[ method ] :
10172 !top ? val : jQuery( win ).scrollLeft(),
10173 top ? val : jQuery( win ).scrollTop()
10177 elem[ method ] = val;
10179 }, method, val, arguments.length, null );
10187 jQuery.each( [
"top",
"left" ],
function( i, prop ) {
10188 jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
10189 function( elem, computed ) {
10191 computed = curCSS( elem, prop );
10193 return rnumnonpx.test( computed ) ?
10194 jQuery( elem ).position()[ prop ] +
"px" :
10203 jQuery.each( { Height:
"height", Width:
"width" },
function( name, type ) {
10204 jQuery.each( { padding:
"inner" + name, content: type,
"":
"outer" + name },
function( defaultExtra, funcName ) {
10206 jQuery.fn[ funcName ] =
function( margin, value ) {
10207 var chainable = arguments.length && ( defaultExtra || typeof margin !==
"boolean" ),
10208 extra = defaultExtra || ( margin ===
true || value ===
true ?
"margin" :
"border" );
10210 return access(
this,
function( elem, type, value ) {
10213 if ( jQuery.isWindow( elem ) ) {
10217 return elem.document.documentElement[
"client" + name ];
10221 if ( elem.nodeType === 9 ) {
10222 doc = elem.documentElement;
10227 elem.body[
"scroll" + name ], doc[
"scroll" + name ],
10228 elem.body[
"offset" + name ], doc[
"offset" + name ],
10229 doc[
"client" + name ]
10233 return value === undefined ?
10235 jQuery.css( elem, type, extra ) :
10238 jQuery.style( elem, type, value, extra );
10239 }, type, chainable ? margin : undefined, chainable, null );
10246 jQuery.fn.size =
function() {
10247 return this.length;
10250 jQuery.fn.andSelf = jQuery.fn.addBack;
10268 if ( typeof define ===
"function" && define.amd ) {
10269 define(
"jquery", [],
function() {
10279 _jQuery = window.jQuery,
10284 jQuery.noConflict =
function( deep ) {
10285 if ( window.$ === jQuery ) {
10289 if ( deep && window.jQuery === jQuery ) {
10290 window.jQuery = _jQuery;
10299 if ( typeof noGlobal === strundefined ) {
10300 window.jQuery = window.$ = jQuery;
Contains fwAtomsFilter::factory utilities.
The namespace memory contains tools to manage memory. It is used for dump. It allows to define the bu...
FWSERVICES_API::fwServices::IService::sptr add(::fwData::Object::sptr obj, const std::string &serviceType, const std::string &_implType, const std::string &_id="")
Create and attach to the object obj a service of type serviceType, implementation _implementationId w...