Use array.indexOf if available (speeds up modern browsers). Thanks to lrbabe and...
[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 = /^[^<]*(<[\w\W]+>)[^>]*$|^#([\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         // Match a standalone tag
35         rsingleTag = /<(\w+)\s*\/?>(?:<\/\1>)?$/,
36
37         // Keep a UserAgent string for use with jQuery.browser
38         userAgent = navigator.userAgent.toLowerCase(),
39
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;
46
47 jQuery.fn = jQuery.prototype = {
48         init: function( selector, context ) {
49                 var match, elem, ret, doc;
50
51                 // Handle $(""), $(null), or $(undefined)
52                 if ( !selector ) {
53                         return this;
54                 }
55
56                 // Handle $(DOMElement)
57                 if ( selector.nodeType ) {
58                         this.context = this[0] = selector;
59                         this.length = 1;
60                         return this;
61                 }
62
63                 // Handle HTML strings
64                 if ( typeof selector === "string" ) {
65                         // Are we dealing with HTML string or an ID?
66                         match = quickExpr.exec( selector );
67
68                         // Verify a match, and that no context was specified for #id
69                         if ( match && (match[1] || !context) ) {
70
71                                 // HANDLE: $(html) -> $(array)
72                                 if ( match[1] ) {
73                                         doc = (context ? context.ownerDocument || context : document);
74
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 );
78
79                                         if ( ret ) {
80                                                 selector = [ doc.createElement( ret[1] ) ];
81
82                                         } else {
83                                                 ret = buildFragment( [ match[1] ], [ doc ] );
84                                                 selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes;
85                                         }
86
87                                 // HANDLE: $("#id")
88                                 } else {
89                                         elem = document.getElementById( match[2] );
90
91                                         if ( elem ) {
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 );
96                                                 }
97
98                                                 // Otherwise, we inject the element directly into the jQuery object
99                                                 this.length = 1;
100                                                 this[0] = elem;
101                                         }
102
103                                         this.context = document;
104                                         this.selector = selector;
105                                         return this;
106                                 }
107
108                         // HANDLE: $("TAG")
109                         } else if ( !context && /^\w+$/.test( selector ) ) {
110                                 this.selector = selector;
111                                 this.context = document;
112                                 selector = document.getElementsByTagName( selector );
113
114                         // HANDLE: $(expr, $(...))
115                         } else if ( !context || context.jquery ) {
116                                 return (context || rootjQuery).find( selector );
117
118                         // HANDLE: $(expr, context)
119                         // (which is just equivalent to: $(context).find(expr)
120                         } else {
121                                 return jQuery( context ).find( selector );
122                         }
123
124                 // HANDLE: $(function)
125                 // Shortcut for document ready
126                 } else if ( jQuery.isFunction( selector ) ) {
127                         return rootjQuery.ready( selector );
128                 }
129
130                 if (selector.selector !== undefined) {
131                         this.selector = selector.selector;
132                         this.context = selector.context;
133                 }
134
135                 return this.setArray(jQuery.isArray( selector ) ?
136                         selector :
137                         jQuery.makeArray(selector));
138         },
139
140         // Start with an empty selector
141         selector: "",
142
143         // The current version of jQuery being used
144         jquery: "@VERSION",
145
146         // The default length of a jQuery object is 0
147         length: 0,
148
149         // The number of elements contained in the matched element set
150         size: function() {
151                 return this.length;
152         },
153
154         toArray: function(){
155                 return slice.call( this, 0 );
156         },
157
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 ) {
161                 return num == null ?
162
163                         // Return a 'clean' array
164                         this.toArray() :
165
166                         // Return just the object
167                         ( num < 0 ? this.slice(num)[ 0 ] : this[ num ] );
168         },
169
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 );
175
176                 // Add the old object onto the stack (as a reference)
177                 ret.prevObject = this;
178
179                 ret.context = this.context;
180
181                 if ( name === "find" ) {
182                         ret.selector = this.selector + (this.selector ? " " : "") + selector;
183                 } else if ( name ) {
184                         ret.selector = this.selector + "." + name + "(" + selector + ")";
185                 }
186
187                 // Return the newly-formed element set
188                 return ret;
189         },
190
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
197                 this.length = 0;
198                 push.apply( this, elems );
199
200                 return this;
201         },
202
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 );
208         },
209
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() );
218                 }
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 );
223         },
224
225         is: function( selector ) {
226                 return !!selector && jQuery.filter( selector, this ).length > 0;
227         },
228
229         // For internal use only.
230         // Behaves like an Array's method, not like a jQuery method.
231         push: push,
232         sort: [].sort,
233         splice: [].splice
234 };
235
236 // Give the init function the jQuery prototype for later instantiation
237 jQuery.fn.init.prototype = jQuery.fn;
238
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;
242
243         // Handle a deep copy situation
244         if ( typeof target === "boolean" ) {
245                 deep = target;
246                 target = arguments[1] || {};
247                 // skip the boolean and the target
248                 i = 2;
249         }
250
251         // Handle case when target is a string or something (possible in deep copy)
252         if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
253                 target = {};
254         }
255
256         // extend jQuery itself if only one argument is passed
257         if ( length === i ) {
258                 target = this;
259                 --i;
260         }
261
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 ];
269
270                                 // Prevent never-ending loop
271                                 if ( target === copy ) {
272                                         continue;
273                                 }
274
275                                 // Recurse if we're merging object values
276                                 if ( deep && copy && typeof copy === "object" && !copy.nodeType ) {
277                                         var clone;
278
279                                         if ( src ) {
280                                                 clone = src;
281                                         } else if ( jQuery.isArray(copy) ) {
282                                                 clone = [];
283                                         } else if ( jQuery.isObjectLiteral(copy) ) {
284                                                 clone = {};
285                                         } else {
286                                                 clone = copy;
287                                         }
288
289                                         // Never move original objects, clone them
290                                         target[ name ] = jQuery.extend( deep, clone, copy );
291
292                                 // Don't bring in undefined values
293                                 } else if ( copy !== undefined ) {
294                                         target[ name ] = copy;
295                                 }
296                         }
297                 }
298         }
299
300         // Return the modified object
301         return target;
302 };
303
304 jQuery.extend({
305         noConflict: function( deep ) {
306                 window.$ = _$;
307
308                 if ( deep ) {
309                         window.jQuery = _jQuery;
310                 }
311
312                 return jQuery;
313         },
314
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]";
320         },
321
322         isArray: function( obj ) {
323                 return toString.call(obj) === "[object Array]";
324         },
325
326         isObjectLiteral: function( obj ) {
327                 if ( toString.call(obj) !== "[object Object]" ) {
328                         return false;
329                 }
330                 
331                 //own properties are iterated firstly,
332                 //so to speed up, we can test last one if it is own or not
333                 
334                 var key;
335                 for ( key in obj ) {}
336                 
337                 return !key || hasOwnProperty.call( obj, key );
338         },
339
340         isEmptyObject: function( obj ) {
341                 for ( var name in obj ) {
342                         return false;
343                 }
344                 return true;
345         },
346
347         // check if an element is in a (or is an) XML document
348         isXMLDoc: function( elem ) {
349                 // documentElement is verified for cases where it doesn't yet exist
350                 // (such as loading iframes in IE - #4833)
351                 var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;
352                 return documentElement ? documentElement.nodeName !== "HTML" : false;
353         },
354
355         // Evalulates a script in a global context
356         globalEval: function( data ) {
357                 if ( data && rnotwhite.test(data) ) {
358                         // Inspired by code by Andrea Giammarchi
359                         // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
360                         var head = document.getElementsByTagName("head")[0] || document.documentElement,
361                                 script = document.createElement("script");
362
363                         script.type = "text/javascript";
364
365                         if ( jQuery.support.scriptEval ) {
366                                 script.appendChild( document.createTextNode( data ) );
367                         } else {
368                                 script.text = data;
369                         }
370
371                         // Use insertBefore instead of appendChild  to circumvent an IE6 bug.
372                         // This arises when a base node is used (#2709).
373                         head.insertBefore( script, head.firstChild );
374                         head.removeChild( script );
375                 }
376         },
377
378         nodeName: function( elem, name ) {
379                 return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();
380         },
381
382         // args is for internal usage only
383         each: function( object, callback, args ) {
384                 var name, i = 0,
385                         length = object.length,
386                         isObj = length === undefined || jQuery.isFunction(object);
387
388                 if ( args ) {
389                         if ( isObj ) {
390                                 for ( name in object ) {
391                                         if ( callback.apply( object[ name ], args ) === false ) {
392                                                 break;
393                                         }
394                                 }
395                         } else {
396                                 for ( ; i < length; ) {
397                                         if ( callback.apply( object[ i++ ], args ) === false ) {
398                                                 break;
399                                         }
400                                 }
401                         }
402
403                 // A special, fast, case for the most common use of each
404                 } else {
405                         if ( isObj ) {
406                                 for ( name in object ) {
407                                         if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
408                                                 break;
409                                         }
410                                 }
411                         } else {
412                                 for ( var value = object[0];
413                                         i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {}
414                         }
415                 }
416
417                 return object;
418         },
419
420         trim: function( text ) {
421                 return (text || "").replace( rtrim, "" );
422         },
423
424         makeArray: function( array ) {
425                 var ret = [], i;
426
427                 if ( array != null ) {
428                         i = array.length;
429
430                         // The window, strings (and functions) also have 'length'
431                         if ( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval ) {
432                                 ret[0] = array;
433                         } else {
434                                 while ( i ) {
435                                         ret[--i] = array[i];
436                                 }
437                         }
438                 }
439
440                 return ret;
441         },
442
443         inArray: function( elem, array ) {
444                 if ( array.indexOf ) {
445                         return array.indexOf( elem );
446                 }
447
448                 for ( var i = 0, length = array.length; i < length; i++ ) {
449                         if ( array[ i ] === elem ) {
450                                 return i;
451                         }
452                 }
453
454                 return -1;
455         },
456
457         merge: function( first, second ) {
458                 // We have to loop this way because IE & Opera overwrite the length
459                 // expando of getElementsByTagName
460                 var i = 0, elem, pos = first.length;
461
462                 while ( (elem = second[ i++ ]) != null ) {
463                         first[ pos++ ] = elem;
464                 }
465
466                 return first;
467         },
468
469         grep: function( elems, callback, inv ) {
470                 var ret = [];
471
472                 // Go through the array, only saving the items
473                 // that pass the validator function
474                 for ( var i = 0, length = elems.length; i < length; i++ ) {
475                         if ( !inv !== !callback( elems[ i ], i ) ) {
476                                 ret.push( elems[ i ] );
477                         }
478                 }
479
480                 return ret;
481         },
482
483         map: function( elems, callback ) {
484                 var ret = [], value;
485
486                 // Go through the array, translating each of the items to their
487                 // new value (or values).
488                 for ( var i = 0, length = elems.length; i < length; i++ ) {
489                         value = callback( elems[ i ], i );
490
491                         if ( value != null ) {
492                                 ret[ ret.length ] = value;
493                         }
494                 }
495
496                 return ret.concat.apply( [], ret );
497         },
498
499         // Use of jQuery.browser is deprecated.
500         // It's included for backwards compatibility and plugins,
501         // although they should work to migrate away.
502         browser: {
503                 version: (/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/.exec(userAgent) || [0,'0'])[1],
504                 safari: /webkit/.test( userAgent ),
505                 opera: /opera/.test( userAgent ),
506                 msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
507                 mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
508         }
509 });
510
511 if ( indexOf ) {
512         jQuery.inArray = function( elem, array ) {
513                 return indexOf.call( array, elem );
514         };
515 }
516
517 // All jQuery objects should point back to these
518 rootjQuery = jQuery(document);
519
520 function evalScript( i, elem ) {
521         if ( elem.src ) {
522                 jQuery.ajax({
523                         url: elem.src,
524                         async: false,
525                         dataType: "script"
526                 });
527         } else {
528                 jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
529         }
530
531         if ( elem.parentNode ) {
532                 elem.parentNode.removeChild( elem );
533         }
534 }
535
536 // Mutifunctional method to get and set values to a collection
537 // The value/s can be optionally by executed if its a function
538 function access( elems, key, value, exec, fn ) {
539         var l = elems.length;
540         
541         // Setting many attributes
542         if ( typeof key === "object" ) {
543                         for (var k in key) {
544                                 access(elems, k, key[k], exec, fn);
545                         }
546                 return elems;
547         }
548         
549         // Setting one attribute
550         if (value !== undefined) {
551                 // Optionally, function values get executed if exec is true
552                 exec = exec && jQuery.isFunction(value);
553                 
554                 for (var i = 0; i < l; i++) {
555                         var elem = elems[i],
556                                 val = exec ? value.call(elem, i) : value;
557                         fn(elem, key, val);
558                 }
559                 return elems;
560         }
561         
562         // Getting an attribute
563         return l ? fn(elems[0], key) : null;
564 }
565
566 function now() {
567         return (new Date).getTime();
568 }