Made isObjectLiteral to work correctly with custom objects with empty prototypes.
[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                 // not own constructor property must be Object
332                 if ( obj.constructor
333                   && !hasOwnProperty.call(obj, "constructor")
334                   && !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
335                         return false;
336                 }
337                 
338                 //own properties are iterated firstly,
339                 //so to speed up, we can test last one if it is own or not
340         
341                 var key;
342                 for ( key in obj ) {}
343                 
344                 return key === undefined || hasOwnProperty.call( obj, key );
345         },
346
347         isEmptyObject: function( obj ) {
348                 for ( var name in obj ) {
349                         return false;
350                 }
351                 return true;
352         },
353
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;
360         },
361
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");
369
370                         script.type = "text/javascript";
371
372                         if ( jQuery.support.scriptEval ) {
373                                 script.appendChild( document.createTextNode( data ) );
374                         } else {
375                                 script.text = data;
376                         }
377
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 );
382                 }
383         },
384
385         nodeName: function( elem, name ) {
386                 return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();
387         },
388
389         // args is for internal usage only
390         each: function( object, callback, args ) {
391                 var name, i = 0,
392                         length = object.length,
393                         isObj = length === undefined || jQuery.isFunction(object);
394
395                 if ( args ) {
396                         if ( isObj ) {
397                                 for ( name in object ) {
398                                         if ( callback.apply( object[ name ], args ) === false ) {
399                                                 break;
400                                         }
401                                 }
402                         } else {
403                                 for ( ; i < length; ) {
404                                         if ( callback.apply( object[ i++ ], args ) === false ) {
405                                                 break;
406                                         }
407                                 }
408                         }
409
410                 // A special, fast, case for the most common use of each
411                 } else {
412                         if ( isObj ) {
413                                 for ( name in object ) {
414                                         if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
415                                                 break;
416                                         }
417                                 }
418                         } else {
419                                 for ( var value = object[0];
420                                         i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {}
421                         }
422                 }
423
424                 return object;
425         },
426
427         trim: function( text ) {
428                 return (text || "").replace( rtrim, "" );
429         },
430
431         makeArray: function( array ) {
432                 var ret = [], i;
433
434                 if ( array != null ) {
435                         i = array.length;
436
437                         // The window, strings (and functions) also have 'length'
438                         if ( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval ) {
439                                 ret[0] = array;
440                         } else {
441                                 while ( i ) {
442                                         ret[--i] = array[i];
443                                 }
444                         }
445                 }
446
447                 return ret;
448         },
449
450         inArray: function( elem, array ) {
451                 if ( array.indexOf ) {
452                         return array.indexOf( elem );
453                 }
454
455                 for ( var i = 0, length = array.length; i < length; i++ ) {
456                         if ( array[ i ] === elem ) {
457                                 return i;
458                         }
459                 }
460
461                 return -1;
462         },
463
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;
468
469                 while ( (elem = second[ i++ ]) != null ) {
470                         first[ pos++ ] = elem;
471                 }
472
473                 return first;
474         },
475
476         grep: function( elems, callback, inv ) {
477                 var ret = [];
478
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 ] );
484                         }
485                 }
486
487                 return ret;
488         },
489
490         map: function( elems, callback ) {
491                 var ret = [], value;
492
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 );
497
498                         if ( value != null ) {
499                                 ret[ ret.length ] = value;
500                         }
501                 }
502
503                 return ret.concat.apply( [], ret );
504         },
505
506         // Use of jQuery.browser is deprecated.
507         // It's included for backwards compatibility and plugins,
508         // although they should work to migrate away.
509         browser: {
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 )
515         }
516 });
517
518 if ( indexOf ) {
519         jQuery.inArray = function( elem, array ) {
520                 return indexOf.call( array, elem );
521         };
522 }
523
524 // All jQuery objects should point back to these
525 rootjQuery = jQuery(document);
526
527 function evalScript( i, elem ) {
528         if ( elem.src ) {
529                 jQuery.ajax({
530                         url: elem.src,
531                         async: false,
532                         dataType: "script"
533                 });
534         } else {
535                 jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
536         }
537
538         if ( elem.parentNode ) {
539                 elem.parentNode.removeChild( elem );
540         }
541 }
542
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;
547         
548         // Setting many attributes
549         if ( typeof key === "object" ) {
550                         for (var k in key) {
551                                 access(elems, k, key[k], exec, fn);
552                         }
553                 return elems;
554         }
555         
556         // Setting one attribute
557         if (value !== undefined) {
558                 // Optionally, function values get executed if exec is true
559                 exec = exec && jQuery.isFunction(value);
560                 
561                 for (var i = 0; i < l; i++) {
562                         var elem = elems[i],
563                                 val = exec ? value.call(elem, i) : value;
564                         fn(elem, key, val);
565                 }
566                 return elems;
567         }
568         
569         // Getting an attribute
570         return l ? fn(elems[0], key) : null;
571 }
572
573 function now() {
574         return (new Date).getTime();
575 }