Saved some references to native methods, instead of re-referencing them on every...
[jquery.git] / src / core.js
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 ?
5                         rootjQuery :
6                         new jQuery.fn.init( selector, context );
7         },
8
9         // Map over jQuery in case of overwrite
10         _jQuery = window.jQuery,
11
12         // Map over the $ in case of overwrite
13         _$ = window.$,
14
15         // Use the correct document accordingly with window argument (sandbox)
16         document = window.document,
17
18         // A central reference to the root jQuery(document)
19         rootjQuery,
20
21         // A simple way to check for HTML strings or ID strings
22         // (both of which we optimize for)
23         quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,
24
25         // Is it a simple selector
26         isSimple = /^.[^:#\[\.,]*$/,
27
28         // Check if a string has a non-whitespace character in it
29         rnotwhite = /\S/,
30
31         // Used for trimming whitespace
32         rtrim = /^\s+|\s+$/g,
33
34         // Keep a UserAgent string for use with jQuery.browser
35         userAgent = navigator.userAgent.toLowerCase(),
36
37         // Save a reference to some core methods
38         toString = Object.prototype.toString,
39         push = Array.prototype.push,
40         slice = Array.prototype.slice;
41
42 // Expose jQuery to the global object
43 window.jQuery = window.$ = jQuery;
44
45 jQuery.fn = jQuery.prototype = {
46         init: function( selector, context ) {
47                 var match, elem, ret;
48
49                 // Handle $(""), $(null), or $(undefined)
50                 if ( !selector ) return this;
51
52                 // Handle $(DOMElement)
53                 if ( selector.nodeType ) {
54                         this.context = this[0] = selector;
55                         this.length++;
56                         return this;
57                 }
58
59                 // Handle HTML strings
60                 if ( typeof selector === "string" ) {
61                         // Are we dealing with HTML string or an ID?
62                         match = quickExpr.exec( selector );
63
64                         // Verify a match, and that no context was specified for #id
65                         if ( match && (match[1] || !context) ) {
66
67                                 // HANDLE: $(html) -> $(array)
68                                 if ( match[1] ) {
69                                         selector = jQuery.clean( [ match[1] ], context );
70
71                                 // HANDLE: $("#id")
72                                 } else {
73                                         elem = document.getElementById( match[3] );
74
75                                         if ( elem ) {
76                                                 // Handle the case where IE and Opera return items
77                                                 // by name instead of ID
78                                                 if ( elem.id !== match[3] ) return rootjQuery.find( selector );
79
80                                                 // Otherwise, we inject the element directly into the jQuery object
81                                                 this.length++;
82                                                 this[0] = elem;
83                                         }
84
85                                         this.context = document;
86                                         this.selector = selector;
87                                         return this;
88                                 }
89
90                         // HANDLE: $(expr, $(...))
91                         } else if ( !context || context.jquery ) {
92                                 return (context || rootjQuery).find( selector );
93
94                         // HANDLE: $(expr, context)
95                         // (which is just equivalent to: $(context).find(expr)
96                         } else {
97                                 return jQuery( context ).find( selector );
98                         }
99
100                 // HANDLE: $(function)
101                 // Shortcut for document ready
102                 } else if ( jQuery.isFunction( selector ) ) {
103                         return rootjQuery.ready( selector );
104                 }
105
106                 // Make sure that old selector state is passed along
107                 if ( selector.selector && selector.context ) {
108                         this.selector = selector.selector;
109                         this.context = selector.context;
110                 }
111
112                 return this.setArray(jQuery.isArray( selector ) ?
113                         selector :
114                         jQuery.makeArray(selector));
115         },
116
117         // Start with an empty selector
118         selector: "",
119
120         // The current version of jQuery being used
121         jquery: "@VERSION",
122
123         // The default length of a jQuery object is 0
124         length: 0,
125
126         // The number of elements contained in the matched element set
127         size: function() {
128                 return this.length;
129         },
130
131         toArray: slice,
132
133         // Get the Nth element in the matched element set OR
134         // Get the whole matched element set as a clean array
135         get: function( num ) {
136                 return num == null ?
137
138                         // Return a 'clean' array
139                         this.toArray() :
140
141                         // Return just the object
142                         ( num < 0 ? this.toArray(num)[ 0 ] : this[ num ] );
143         },
144
145         // Take an array of elements and push it onto the stack
146         // (returning the new matched element set)
147         pushStack: function( elems, name, selector ) {
148                 // Build a new jQuery matched element set
149                 var ret = jQuery( elems || null );
150
151                 // Add the old object onto the stack (as a reference)
152                 ret.prevObject = this;
153
154                 ret.context = this.context;
155
156                 if ( name === "find" ) {
157                         ret.selector = this.selector + (this.selector ? " " : "") + selector;
158                 } else if ( name ) {
159                         ret.selector = this.selector + "." + name + "(" + selector + ")";
160                 }
161
162                 // Return the newly-formed element set
163                 return ret;
164         },
165
166         // Force the current matched set of elements to become
167         // the specified array of elements (destroying the stack in the process)
168         // You should use pushStack() in order to do this, but maintain the stack
169         setArray: function( elems ) {
170                 // Resetting the length to 0, then using the native Array push
171                 // is a super-fast way to populate an object with array-like properties
172                 this.length = 0;
173                 push.apply( this, elems );
174
175                 return this;
176         },
177
178         // Execute a callback for every element in the matched set.
179         // (You can seed the arguments with an array of args, but this is
180         // only used internally.)
181         each: function( callback, args ) {
182                 return jQuery.each( this, callback, args );
183         },
184
185         // Determine the position of an element within
186         // the matched set of elements
187         index: function( elem ) {
188                 if ( !elem || typeof elem === "string" ) {
189                         return jQuery.inArray( this[0],
190                                 // If it receives a string, the selector is used
191                                 // If it receives nothing, the siblings are used
192                                 elem ? jQuery( elem ) : this.parent().children() );
193                 }
194                 // Locate the position of the desired element
195                 return jQuery.inArray(
196                         // If it receives a jQuery object, the first element is used
197                         elem.jquery ? elem[0] : elem, this );
198         },
199
200         is: function( selector ) {
201                 return !!selector && jQuery.multiFilter( selector, this ).length > 0;
202         },
203
204         // For internal use only.
205         // Behaves like an Array's method, not like a jQuery method.
206         push: push,
207         sort: [].sort,
208         splice: [].splice
209 };
210
211 // Give the init function the jQuery prototype for later instantiation
212 jQuery.fn.init.prototype = jQuery.fn;
213
214 jQuery.extend = jQuery.fn.extend = function() {
215         // copy reference to target object
216         var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy;
217
218         // Handle a deep copy situation
219         if ( typeof target === "boolean" ) {
220                 deep = target;
221                 target = arguments[1] || {};
222                 // skip the boolean and the target
223                 i = 2;
224         }
225
226         // Handle case when target is a string or something (possible in deep copy)
227         if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
228                 target = {};
229         }
230
231         // extend jQuery itself if only one argument is passed
232         if ( length === i ) {
233                 target = this;
234                 --i;
235         }
236
237         for ( ; i < length; i++ ) {
238                 // Only deal with non-null/undefined values
239                 if ( (options = arguments[ i ]) != null ) {
240                         // Extend the base object
241                         for ( name in options ) {
242                                 src = target[ name ];
243                                 copy = options[ name ];
244
245                                 // Prevent never-ending loop
246                                 if ( target === copy ) {
247                                         continue;
248                                 }
249
250                                 // Recurse if we're merging object values
251                                 if ( deep && copy && typeof copy === "object" && !copy.nodeType ) {
252                                         var clone;
253
254                                         if( src ) clone = src;
255                                         else if( jQuery.isArray(copy) ) clone = [ ];
256                                         else if( jQuery.isObject(copy) ) clone = { };
257                                         else clone = copy;
258
259                                         // Never move original objects, clone them
260                                         target[ name ] = jQuery.extend( deep, clone, copy );
261
262                                 // Don't bring in undefined values
263                                 } else if ( copy !== undefined ) {
264                                         target[ name ] = copy;
265                                 }
266                         }
267                 }
268         }
269
270         // Return the modified object
271         return target;
272 };
273
274 jQuery.extend({
275         noConflict: function( deep ) {
276                 window.$ = _$;
277
278                 if ( deep ) {
279                         window.jQuery = _jQuery;
280                 }
281
282                 return jQuery;
283         },
284
285         // See test/unit/core.js for details concerning isFunction.
286         // Since version 1.3, DOM methods and functions like alert
287         // aren't supported. They return false on IE (#2968).
288         isFunction: function( obj ) {
289                 return toString.call(obj) === "[object Function]";
290         },
291
292         isArray: function( obj ) {
293                 return toString.call(obj) === "[object Array]";
294         },
295
296         isObject: function( obj ) {
297                 return this.constructor.call(obj) === Object;
298         },
299
300         isEmptyObject: function( obj ) {
301                 for(var name in obj)
302                         return false;
303                 return true;
304         },
305
306         // check if an element is in a (or is an) XML document
307         isXMLDoc: function( elem ) {
308                 return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
309                         !!elem.ownerDocument && elem.ownerDocument.documentElement.nodeName !== "HTML";
310         },
311
312         // Evalulates a script in a global context
313         globalEval: function( data ) {
314                 if ( data && rnotwhite.test(data) ) {
315                         // Inspired by code by Andrea Giammarchi
316                         // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
317                         var head = document.getElementsByTagName("head")[0] || document.documentElement,
318                                 script = document.createElement("script");
319
320                         script.type = "text/javascript";
321                         if ( jQuery.support.scriptEval ) {
322                                 script.appendChild( document.createTextNode( data ) );
323                         } else {
324                                 script.text = data;
325                         }
326
327                         // Use insertBefore instead of appendChild  to circumvent an IE6 bug.
328                         // This arises when a base node is used (#2709).
329                         head.insertBefore( script, head.firstChild );
330                         head.removeChild( script );
331                 }
332         },
333
334         nodeName: function( elem, name ) {
335                 return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();
336         },
337
338         // args is for internal usage only
339         each: function( object, callback, args ) {
340                 var name, i = 0,
341                         length = object.length,
342                         isObj = length === undefined || jQuery.isFunction(object);
343
344                 if ( args ) {
345                         if ( isObj ) {
346                                 for ( name in object ) {
347                                         if ( callback.apply( object[ name ], args ) === false ) {
348                                                 break;
349                                         }
350                                 }
351                         } else {
352                                 for ( ; i < length; ) {
353                                         if ( callback.apply( object[ i++ ], args ) === false ) {
354                                                 break;
355                                         }
356                                 }
357                         }
358
359                 // A special, fast, case for the most common use of each
360                 } else {
361                         if ( isObj ) {
362                                 for ( name in object ) {
363                                         if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
364                                                 break;
365                                         }
366                                 }
367                         } else {
368                                 for ( var value = object[0];
369                                         i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {}
370                         }
371                 }
372
373                 return object;
374         },
375
376         trim: function( text ) {
377                 return (text || "").replace( rtrim, "" );
378         },
379
380         makeArray: function( array ) {
381                 var ret = [], i;
382
383                 if ( array != null ) {
384                         i = array.length;
385
386                         // The window, strings (and functions) also have 'length'
387                         if ( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval ) {
388                                 ret[0] = array;
389                         } else {
390                                 while ( i ) {
391                                         ret[--i] = array[i];
392                                 }
393                         }
394                 }
395
396                 return ret;
397         },
398
399         inArray: function( elem, array ) {
400                 for ( var i = 0, length = array.length; i < length; i++ ) {
401                         if ( array[ i ] === elem ) {
402                                 return i;
403                         }
404                 }
405
406                 return -1;
407         },
408
409         merge: function( first, second ) {
410                 // We have to loop this way because IE & Opera overwrite the length
411                 // expando of getElementsByTagName
412                 var i = 0, elem, pos = first.length;
413
414                 // Also, we need to make sure that the correct elements are being returned
415                 // (IE returns comment nodes in a '*' query)
416                 if ( !jQuery.support.getAll ) {
417                         while ( (elem = second[ i++ ]) != null ) {
418                                 if ( elem.nodeType !== 8 ) {
419                                         first[ pos++ ] = elem;
420                                 }
421                         }
422
423                 } else {
424                         while ( (elem = second[ i++ ]) != null ) {
425                                 first[ pos++ ] = elem;
426                         }
427                 }
428
429                 return first;
430         },
431
432         unique: function( array ) {
433                 var ret = [], done = {}, id;
434
435                 try {
436                         for ( var i = 0, length = array.length; i < length; i++ ) {
437                                 id = jQuery.data( array[ i ] );
438
439                                 if ( !done[ id ] ) {
440                                         done[ id ] = true;
441                                         ret.push( array[ i ] );
442                                 }
443                         }
444                 } catch( e ) {
445                         ret = array;
446                 }
447
448                 return ret;
449         },
450
451         grep: function( elems, callback, inv ) {
452                 var ret = [];
453
454                 // Go through the array, only saving the items
455                 // that pass the validator function
456                 for ( var i = 0, length = elems.length; i < length; i++ ) {
457                         if ( !inv !== !callback( elems[ i ], i ) ) {
458                                 ret.push( elems[ i ] );
459                         }
460                 }
461
462                 return ret;
463         },
464
465         map: function( elems, callback ) {
466                 var ret = [], value;
467
468                 // Go through the array, translating each of the items to their
469                 // new value (or values).
470                 for ( var i = 0, length = elems.length; i < length; i++ ) {
471                         value = callback( elems[ i ], i );
472
473                         if ( value != null ) {
474                                 ret[ ret.length ] = value;
475                         }
476                 }
477
478                 return ret.concat.apply( [], ret );
479         },
480
481         // Use of jQuery.browser is deprecated.
482         // It's included for backwards compatibility and plugins,
483         // although they should work to migrate away.
484         browser: {
485                 version: (/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/.exec(userAgent) || [0,'0'])[1],
486                 safari: /webkit/.test( userAgent ),
487                 opera: /opera/.test( userAgent ),
488                 msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
489                 mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
490         }
491 });
492
493 // All jQuery objects should point back to these
494 rootjQuery = jQuery(document);
495
496 function evalScript( i, elem ) {
497         if ( elem.src ) {
498                 jQuery.ajax({
499                         url: elem.src,
500                         async: false,
501                         dataType: "script"
502                 });
503         } else {
504                 jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
505         }
506
507         if ( elem.parentNode ) {
508                 elem.parentNode.removeChild( elem );
509         }
510 }
511
512 function now() {
513         return (new Date).getTime();
514 }