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