1 // Define a local copy of jQuery
2 var jQuery = function( selector, context ) {
3 // The jQuery object is actually just the init constructor 'enhanced'
4 return arguments.length === 0 ?
6 new jQuery.fn.init( selector, context );
9 // Map over jQuery in case of overwrite
10 _jQuery = window.jQuery,
12 // Map over the $ in case of overwrite
15 // Use the correct document accordingly with window argument (sandbox)
16 document = window.document,
18 // A central reference to the root jQuery(document)
21 // A simple way to check for HTML strings or ID strings
22 // (both of which we optimize for)
23 quickExpr = /^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,
25 // Is it a simple selector
26 isSimple = /^.[^:#\[\.,]*$/,
28 // Check if a string has a non-whitespace character in it
31 // Used for trimming whitespace
34 // Match a standalone tag
35 rsingleTag = /<(\w+)\s*\/?>(?:<\/\1>)?$/,
37 // Keep a UserAgent string for use with jQuery.browser
38 userAgent = navigator.userAgent.toLowerCase(),
40 // Save a reference to some core methods
41 toString = Object.prototype.toString,
42 hasOwnProperty = Object.prototype.hasOwnProperty,
43 push = Array.prototype.push,
44 slice = Array.prototype.slice,
45 indexOf = Array.prototype.indexOf;
47 jQuery.fn = jQuery.prototype = {
48 init: function( selector, context ) {
49 var match, elem, ret, doc;
51 // Handle $(""), $(null), or $(undefined)
56 // Handle $(DOMElement)
57 if ( selector.nodeType ) {
58 this.context = this[0] = selector;
63 // Handle HTML strings
64 if ( typeof selector === "string" ) {
65 // Are we dealing with HTML string or an ID?
66 match = quickExpr.exec( selector );
68 // Verify a match, and that no context was specified for #id
69 if ( match && (match[1] || !context) ) {
71 // HANDLE: $(html) -> $(array)
73 doc = (context ? context.ownerDocument || context : document);
75 // If a single string is passed in and it's a single tag
76 // just do a createElement and skip the rest
77 ret = rsingleTag.exec( selector );
80 selector = [ doc.createElement( ret[1] ) ];
83 ret = buildFragment( [ match[1] ], [ doc ] );
84 selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes;
89 elem = document.getElementById( match[2] );
92 // Handle the case where IE and Opera return items
93 // by name instead of ID
94 if ( elem.id !== match[2] ) {
95 return rootjQuery.find( selector );
98 // Otherwise, we inject the element directly into the jQuery object
103 this.context = document;
104 this.selector = selector;
109 } else if ( !context && /^\w+$/.test( selector ) ) {
110 this.selector = selector;
111 this.context = document;
112 selector = document.getElementsByTagName( selector );
114 // HANDLE: $(expr, $(...))
115 } else if ( !context || context.jquery ) {
116 return (context || rootjQuery).find( selector );
118 // HANDLE: $(expr, context)
119 // (which is just equivalent to: $(context).find(expr)
121 return jQuery( context ).find( selector );
124 // HANDLE: $(function)
125 // Shortcut for document ready
126 } else if ( jQuery.isFunction( selector ) ) {
127 return rootjQuery.ready( selector );
130 if (selector.selector !== undefined) {
131 this.selector = selector.selector;
132 this.context = selector.context;
135 return this.setArray(jQuery.isArray( selector ) ?
137 jQuery.makeArray(selector));
140 // Start with an empty selector
143 // The current version of jQuery being used
146 // The default length of a jQuery object is 0
149 // The number of elements contained in the matched element set
155 return slice.call( this, 0 );
158 // Get the Nth element in the matched element set OR
159 // Get the whole matched element set as a clean array
160 get: function( num ) {
163 // Return a 'clean' array
166 // Return just the object
167 ( num < 0 ? this.slice(num)[ 0 ] : this[ num ] );
170 // Take an array of elements and push it onto the stack
171 // (returning the new matched element set)
172 pushStack: function( elems, name, selector ) {
173 // Build a new jQuery matched element set
174 var ret = jQuery( elems || null );
176 // Add the old object onto the stack (as a reference)
177 ret.prevObject = this;
179 ret.context = this.context;
181 if ( name === "find" ) {
182 ret.selector = this.selector + (this.selector ? " " : "") + selector;
184 ret.selector = this.selector + "." + name + "(" + selector + ")";
187 // Return the newly-formed element set
191 // Force the current matched set of elements to become
192 // the specified array of elements (destroying the stack in the process)
193 // You should use pushStack() in order to do this, but maintain the stack
194 setArray: function( elems ) {
195 // Resetting the length to 0, then using the native Array push
196 // is a super-fast way to populate an object with array-like properties
198 push.apply( this, elems );
203 // Execute a callback for every element in the matched set.
204 // (You can seed the arguments with an array of args, but this is
205 // only used internally.)
206 each: function( callback, args ) {
207 return jQuery.each( this, callback, args );
210 // Determine the position of an element within
211 // the matched set of elements
212 index: function( elem ) {
213 if ( !elem || typeof elem === "string" ) {
214 return jQuery.inArray( this[0],
215 // If it receives a string, the selector is used
216 // If it receives nothing, the siblings are used
217 elem ? jQuery( elem ) : this.parent().children() );
219 // Locate the position of the desired element
220 return jQuery.inArray(
221 // If it receives a jQuery object, the first element is used
222 elem.jquery ? elem[0] : elem, this );
225 is: function( selector ) {
226 return !!selector && jQuery.filter( selector, this ).length > 0;
229 // For internal use only.
230 // Behaves like an Array's method, not like a jQuery method.
236 // Give the init function the jQuery prototype for later instantiation
237 jQuery.fn.init.prototype = jQuery.fn;
239 jQuery.extend = jQuery.fn.extend = function() {
240 // copy reference to target object
241 var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy;
243 // Handle a deep copy situation
244 if ( typeof target === "boolean" ) {
246 target = arguments[1] || {};
247 // skip the boolean and the target
251 // Handle case when target is a string or something (possible in deep copy)
252 if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
256 // extend jQuery itself if only one argument is passed
257 if ( length === i ) {
262 for ( ; i < length; i++ ) {
263 // Only deal with non-null/undefined values
264 if ( (options = arguments[ i ]) != null ) {
265 // Extend the base object
266 for ( name in options ) {
267 src = target[ name ];
268 copy = options[ name ];
270 // Prevent never-ending loop
271 if ( target === copy ) {
275 // Recurse if we're merging object values
276 if ( deep && copy && typeof copy === "object" && !copy.nodeType ) {
281 } else if ( jQuery.isArray(copy) ) {
283 } else if ( jQuery.isObjectLiteral(copy) ) {
289 // Never move original objects, clone them
290 target[ name ] = jQuery.extend( deep, clone, copy );
292 // Don't bring in undefined values
293 } else if ( copy !== undefined ) {
294 target[ name ] = copy;
300 // Return the modified object
305 noConflict: function( deep ) {
309 window.jQuery = _jQuery;
315 // See test/unit/core.js for details concerning isFunction.
316 // Since version 1.3, DOM methods and functions like alert
317 // aren't supported. They return false on IE (#2968).
318 isFunction: function( obj ) {
319 return toString.call(obj) === "[object Function]";
322 isArray: function( obj ) {
323 return toString.call(obj) === "[object Array]";
326 isObjectLiteral: function( obj ) {
327 if ( toString.call(obj) !== "[object Object]" ) {
331 // not own constructor property must be Object
333 && !hasOwnProperty.call(obj, "constructor")
334 && !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
338 //own properties are iterated firstly,
339 //so to speed up, we can test last one if it is own or not
342 for ( key in obj ) {}
344 return key === undefined || hasOwnProperty.call( obj, key );
347 isEmptyObject: function( obj ) {
348 for ( var name in obj ) {
354 // check if an element is in a (or is an) XML document
355 isXMLDoc: function( elem ) {
356 // documentElement is verified for cases where it doesn't yet exist
357 // (such as loading iframes in IE - #4833)
358 var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;
359 return documentElement ? documentElement.nodeName !== "HTML" : false;
362 // Evalulates a script in a global context
363 globalEval: function( data ) {
364 if ( data && rnotwhite.test(data) ) {
365 // Inspired by code by Andrea Giammarchi
366 // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
367 var head = document.getElementsByTagName("head")[0] || document.documentElement,
368 script = document.createElement("script");
370 script.type = "text/javascript";
372 if ( jQuery.support.scriptEval ) {
373 script.appendChild( document.createTextNode( data ) );
378 // Use insertBefore instead of appendChild to circumvent an IE6 bug.
379 // This arises when a base node is used (#2709).
380 head.insertBefore( script, head.firstChild );
381 head.removeChild( script );
385 nodeName: function( elem, name ) {
386 return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();
389 // args is for internal usage only
390 each: function( object, callback, args ) {
392 length = object.length,
393 isObj = length === undefined || jQuery.isFunction(object);
397 for ( name in object ) {
398 if ( callback.apply( object[ name ], args ) === false ) {
403 for ( ; i < length; ) {
404 if ( callback.apply( object[ i++ ], args ) === false ) {
410 // A special, fast, case for the most common use of each
413 for ( name in object ) {
414 if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
419 for ( var value = object[0];
420 i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {}
427 trim: function( text ) {
428 return (text || "").replace( rtrim, "" );
431 makeArray: function( array ) {
434 if ( array != null ) {
437 // The window, strings (and functions) also have 'length'
438 if ( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval ) {
450 inArray: function( elem, array ) {
451 if ( array.indexOf ) {
452 return array.indexOf( elem );
455 for ( var i = 0, length = array.length; i < length; i++ ) {
456 if ( array[ i ] === elem ) {
464 merge: function( first, second ) {
465 // We have to loop this way because IE & Opera overwrite the length
466 // expando of getElementsByTagName
467 var i = 0, elem, pos = first.length;
469 while ( (elem = second[ i++ ]) != null ) {
470 first[ pos++ ] = elem;
476 grep: function( elems, callback, inv ) {
479 // Go through the array, only saving the items
480 // that pass the validator function
481 for ( var i = 0, length = elems.length; i < length; i++ ) {
482 if ( !inv !== !callback( elems[ i ], i ) ) {
483 ret.push( elems[ i ] );
490 map: function( elems, callback ) {
493 // Go through the array, translating each of the items to their
494 // new value (or values).
495 for ( var i = 0, length = elems.length; i < length; i++ ) {
496 value = callback( elems[ i ], i );
498 if ( value != null ) {
499 ret[ ret.length ] = value;
503 return ret.concat.apply( [], ret );
506 // Use of jQuery.browser is deprecated.
507 // It's included for backwards compatibility and plugins,
508 // although they should work to migrate away.
510 version: (/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/.exec(userAgent) || [0,'0'])[1],
511 safari: /webkit/.test( userAgent ),
512 opera: /opera/.test( userAgent ),
513 msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
514 mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
519 jQuery.inArray = function( elem, array ) {
520 return indexOf.call( array, elem );
524 // All jQuery objects should point back to these
525 rootjQuery = jQuery(document);
527 function evalScript( i, elem ) {
535 jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
538 if ( elem.parentNode ) {
539 elem.parentNode.removeChild( elem );
543 // Mutifunctional method to get and set values to a collection
544 // The value/s can be optionally by executed if its a function
545 function access( elems, key, value, exec, fn ) {
546 var l = elems.length;
548 // Setting many attributes
549 if ( typeof key === "object" ) {
551 access(elems, k, key[k], exec, fn);
556 // Setting one attribute
557 if (value !== undefined) {
558 // Optionally, function values get executed if exec is true
559 exec = exec && jQuery.isFunction(value);
561 for (var i = 0; i < l; i++) {
563 val = exec ? value.call(elem, i) : value;
569 // Getting an attribute
570 return l ? fn(elems[0], key) : null;
574 return (new Date).getTime();