2 * jQuery - New Wave Javascript
4 * Copyright (c) 2006 John Resig (jquery.com)
5 * Licensed under the MIT License:
6 * http://www.opensource.org/licenses/mit-license.php
12 // Global undefined variable
13 window.undefined = window.undefined;
15 // Map over the $ in case of overwrite
19 * Create a new jQuery Object
22 var $ = jQuery = function(a,c) {
24 * Handle support for overriding other $() functions. Way too many libraries
25 * provide this function to simply ignore it and overwrite it.
28 // Check to see if this is a possible collision case
29 if ( _$ && !c && ( a.constructor == String &&
31 // Make sure that the expression is a colliding one
32 !/[^a-zA-Z0-9_-]/.test(a) &&
34 // and that there are no elements that match it
35 // (this is the one truly ambiguous case)
36 !document.getElementsByTagName(a).length ) ||
38 // Watch for an array being passed in (Prototype 1.5)
39 a.constructor == Array )
41 // Use the default method, in case it works some voodoo
44 // Watch for when a jQuery object is passed in as an arg
48 // If the context is global, return a new object
50 return new jQuery(a,c);
52 // Find the matching elements and save them for later
53 this.cur = jQuery.Select(
54 a || jQuery.context || document,
55 c && c.jquery && c.get(0) || c
59 jQuery.fn = jQuery.prototype = {
61 * The current SVN version of jQuery.
69 * The number of elements currently matched.
74 return this.get().length;
78 * Access the elements matched. If a number is provided,
79 * the Nth element is returned, otherwise, an array of all
80 * matched items is returned.
82 * @type Array,DOMElement
85 return num == undefined ? this.cur : this.cur[num];
89 for ( var i = 0; i < this.size(); i++ )
90 f.apply( this.get(i), [i] );
94 return this.each(function(){
95 if ( b === undefined )
97 jQuery.attr(this,j,a[j]);
99 jQuery.attr(this,a,b);
103 return h == undefined && this.size() ?
104 this.get(0).innerHTML : this.set( "innerHTML", h );
107 return h == undefined && this.size() ?
108 this.get(0).value : this.set( "value", h );
113 for ( var j = 0; j < e.length; j++ ) {
114 var r = e[j].childNodes;
115 for ( var i = 0; i < r.length; i++ )
116 t += r[i].nodeType != 1 ?
117 r[i].nodeValue : jQuery.fn.text([ r[i] ]);
123 return a.constructor != String || b ?
124 this.each(function(){
125 if ( b === undefined )
127 jQuery.attr(this.style,j,a[j]);
129 jQuery.attr(this.style,a,b);
130 }) : jQuery.css( this.get(0), a );
133 return this.each(function(){
134 var d = jQuery.css(this,"display");
135 if ( !d || d == "none" )
142 return this.each(function(){
143 this.style.display = this.oldblock ? this.oldblock : "";
144 if ( jQuery.css(this,"display") == "none" )
145 this.style.display = "block";
149 return this.each(function(){
150 this.oldblock = jQuery.css(this,"display");
151 if ( this.oldblock == "none" )
152 this.oldblock = "block";
153 this.style.display = "none";
156 addClass: function(c) {
157 return this.each(function(){
158 jQuery.className.add(this,c);
161 removeClass: function(c) {
162 return this.each(function(){
163 jQuery.className.remove(this,c);
167 toggleClass: function(c) {
168 return this.each(function(){
169 if (jQuery.hasWord(this,c))
170 jQuery.className.remove(this,c);
172 jQuery.className.add(this,c);
176 this.each(function(){this.parentNode.removeChild( this );});
177 return this.pushStack( [] );
181 var a = jQuery.clean(arguments);
182 return this.each(function(){
183 var b = a[0].cloneNode(true);
184 this.parentNode.insertBefore( b, this );
185 while ( b.firstChild )
187 b.appendChild( this );
192 var clone = this.size() > 1;
193 var a = jQuery.clean(arguments);
194 return this.domManip(function(){
195 for ( var i = 0; i < a.length; i++ )
196 this.appendChild( clone ? a[i].cloneNode(true) : a[i] );
200 appendTo: function() {
202 return this.each(function(){
203 for ( var i = 0; i < a.length; i++ )
204 $(a[i]).append( this );
208 prepend: function() {
209 var clone = this.size() > 1;
210 var a = jQuery.clean(arguments);
211 return this.domManip(function(){
212 for ( var i = a.length - 1; i >= 0; i-- )
213 this.insertBefore( clone ? a[i].cloneNode(true) : a[i], this.firstChild );
218 var clone = this.size() > 1;
219 var a = jQuery.clean(arguments);
220 return this.each(function(){
221 for ( var i = 0; i < a.length; i++ )
222 this.parentNode.insertBefore( clone ? a[i].cloneNode(true) : a[i], this );
227 var clone = this.size() > 1;
228 var a = jQuery.clean(arguments);
229 return this.each(function(){
230 for ( var i = a.length - 1; i >= 0; i-- )
231 this.parentNode.insertBefore( clone ? a[i].cloneNode(true) : a[i], this.nextSibling );
236 return this.each(function(){
237 while ( this.firstChild )
238 this.removeChild( this.firstChild );
242 bind: function(t,f) {
243 return this.each(function(){jQuery.event.add(this,t,f);});
245 unbind: function(t,f) {
246 return this.each(function(){jQuery.event.remove(this,t,f);});
248 trigger: function(t) {
249 return this.each(function(){jQuery.event.trigger(this,t);});
252 pushStack: function(a) {
253 if ( !this.stack ) this.stack = [];
254 this.stack.unshift( this.cur );
255 if ( a ) this.cur = a;
261 this.each(function(){
262 ret = jQuery.merge( ret, jQuery.Select(t,this) );
264 this.pushStack( ret );
269 this.cur = this.stack.shift();
273 parent: function(a) {
274 var ret = jQuery.map(this.cur,"a.parentNode");
275 if ( a ) ret = jQuery.filter(a,ret).r;
276 return this.pushStack(ret);
279 parents: function(a) {
280 var ret = jQuery.map(this.cur,jQuery.parents);
281 if ( a ) ret = jQuery.filter(a,ret).r;
282 return this.pushStack(ret);
285 siblings: function(a) {
286 // Incorrect, need to exclude current element
287 var ret = jQuery.map(this.cur,jQuery.sibling);
288 if ( a ) ret = jQuery.filter(a,ret).r;
289 return this.pushStack(ret);
292 filter: function(t) {
293 return this.pushStack( jQuery.filter(t,this.cur).r );
296 return this.pushStack( t.constructor == String ?
297 jQuery.filter(t,this.cur,false).r :
298 jQuery.grep(this.cur,function(a){ return a != t; }) );
301 return this.pushStack( jQuery.merge( this.cur, t.constructor == String ?
302 jQuery.Select(t) : t.constructor == Array ? t : [t] ) );
306 * A wrapper function for each() to be used by append and prepend.
307 * Handles cases where you're trying to modify the inner contents of
308 * a table, when you actually need to work with the tbody.
311 * @param {String} expr The expression with which to filter
315 return jQuery.filter(expr,this.cur).r.length > 0;
319 * A wrapper function for each() to be used by append and prepend.
320 * Handles cases where you're trying to modify the inner contents of
321 * a table, when you actually need to work with the tbody.
325 * @param {Function} fn The function doing the DOM manipulation.
328 domManip: function(fn){
329 return this.each(function(){
332 if ( this.nodeName == "TABLE" ) {
333 var tbody = this.getElementsByTagName("tbody");
335 if ( !tbody.length ) {
336 obj = document.createElement("tbody");
337 this.appendChild( obj );
349 if (jQuery.hasWord(o,c)) return;
350 o.className += ( o.className ? " " : "" ) + c;
352 remove: function(o,c){
353 o.className = !c ? "" :
355 new RegExp("(^|\\s*\\b[^-])"+c+"($|\\b(?=[^-]))", "g"), "");
360 var b = navigator.userAgent.toLowerCase();
362 // Figure out what browser is being used
364 ( /webkit/.test(b) && "safari" ) ||
365 ( /opera/.test(b) && "opera" ) ||
366 ( /msie/.test(b) && "msie" ) ||
367 ( !/compatible/.test(b) && "mozilla" ) ||
370 // Check to see if the W3C box model is being used
371 jQuery.boxModel = ( jQuery.browser != "msie" || document.compatMode == "CSS1Compat" );
374 jQuery.css = function(e,p) {
375 // Adapted from Prototype 1.4.0
376 if ( p == "height" || p == "width" ) {
378 // Handle extra width/height provided by the W3C box model
379 var ph = (!jQuery.boxModel ? 0 :
380 jQuery.css(e,"paddingTop") + jQuery.css(e,"paddingBottom") +
381 jQuery.css(e,"borderTopWidth") + jQuery.css(e,"borderBottomWidth")) || 0;
383 var pw = (!jQuery.boxModel ? 0 :
384 jQuery.css(e,"paddingLeft") + jQuery.css(e,"paddingRight") +
385 jQuery.css(e,"borderLeftWidth") + jQuery.css(e,"borderRightWidth")) || 0;
389 if (jQuery.css(e,"display") != 'none') {
390 oHeight = e.offsetHeight || parseInt(e.style.height) || 0;
391 oWidth = e.offsetWidth || parseInt(e.style.width) || 0;
394 var ov = els.visibility;
395 var op = els.position;
396 var od = els.display;
397 els.visibility = "hidden";
398 els.position = "absolute";
400 oHeight = e.clientHeight || parseInt(e.style.height);
401 oWidth = e.clientWidth || parseInt(e.style.width);
407 return p == "height" ?
408 (oHeight - ph < 0 ? 0 : oHeight - ph) :
409 (oWidth - pw < 0 ? 0 : oWidth - pw);
416 else if (e.currentStyle)
417 r = e.currentStyle[p];
418 else if (document.defaultView && document.defaultView.getComputedStyle) {
419 p = p.replace(/([A-Z])/g,"-$1").toLowerCase();
420 var s = document.defaultView.getComputedStyle(e,"");
421 r = s ? s.getPropertyValue(p) : null;
424 return /top|right|left|bottom/i.test(p) ? parseFloat( r ) : r;
427 jQuery.clean = function(a) {
429 for ( var i = 0; i < a.length; i++ ) {
430 if ( a[i].constructor == String ) {
432 if ( !a[i].indexOf("<tr") ) {
434 a[i] = "<table>" + a[i] + "</table>";
435 } else if ( !a[i].indexOf("<td") || !a[i].indexOf("<th") ) {
437 a[i] = "<table><tbody><tr>" + a[i] + "</tr></tbody></table>";
440 var div = document.createElement("div");
441 div.innerHTML = a[i];
444 div = div.firstChild.firstChild;
445 if ( td ) div = div.firstChild;
448 for ( var j = 0; j < div.childNodes.length; j++ )
449 r[r.length] = div.childNodes[j];
450 } else if ( a[i].length && !a[i].nodeType )
451 for ( var k = 0; k < a[i].length; k++ )
452 r[r.length] = a[i][k];
453 else if ( a[i] !== null )
455 a[i].nodeType ? a[i] : document.createTextNode(a[i].toString());
461 "": "m[2]== '*'||a.nodeName.toUpperCase()==m[2].toUpperCase()",
462 "#": "a.getAttribute('id')&&a.getAttribute('id')==m[2]",
469 last: "i==r.length-1",
472 "first-child": "jQuery.sibling(a,0).cur",
473 "nth-child": "(m[3]=='even'?jQuery.sibling(a,m[3]).n%2==0:(m[3]=='odd'?jQuery.sibling(a,m[3]).n%2==1:jQuery.sibling(a,m[3]).cur))",
474 "last-child": "jQuery.sibling(a,0,true).cur",
475 "nth-last-child": "jQuery.sibling(a,m[3],true).cur",
476 "first-of-type": "jQuery.ofType(a,0)",
477 "nth-of-type": "jQuery.ofType(a,m[3])",
478 "last-of-type": "jQuery.ofType(a,0,true)",
479 "nth-last-of-type": "jQuery.ofType(a,m[3],true)",
480 "only-of-type": "jQuery.ofType(a)==1",
481 "only-child": "jQuery.sibling(a).length==1",
482 parent: "a.childNodes.length",
483 empty: "!a.childNodes.length",
484 root: "a==(a.ownerDocument||document).documentElement",
485 contains: "(a.innerText||a.innerHTML).indexOf(m[3])!=-1",
486 visible: "(!a.type||a.type!='hidden')&&(jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!= 'hidden')",
487 hidden: "(a.type&&a.type=='hidden')||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')== 'hidden'",
488 enabled: "!a.disabled",
489 disabled: "a.disabled",
492 ".": "jQuery.hasWord(a,m[2])",
494 "=": "jQuery.attr(a,m[3])==m[4]",
495 "!=": "jQuery.attr(a,m[3])!=m[4]",
496 "~=": "jQuery.hasWord(jQuery.attr(a,m[3]),m[4])",
497 "|=": "!jQuery.attr(a,m[3]).indexOf(m[4])",
498 "^=": "!jQuery.attr(a,m[3]).indexOf(m[4])",
499 "$=": "jQuery.attr(a,m[3]).substr( jQuery.attr(a,m[3]).length - m[4].length,m[4].length )==m[4]",
500 "*=": "jQuery.attr(a,m[3]).indexOf(m[4])>=0",
501 "": "m[3]=='*'?a.attributes.length>0:jQuery.attr(a,m[3])"
503 "[": "jQuery.Select(m[2],a).length"
507 "\\.\\.|/\\.\\.", "a.parentNode",
508 ">|/", "jQuery.sibling(a.firstChild)",
509 "\\+", "jQuery.sibling(a).next",
512 var s = jQuery.sibling(a);
514 for ( var i = s.n; i < s.length; i++ )
520 jQuery.Select = function( t, context ) {
521 context = context || jQuery.context || document;
522 if ( t.constructor != String )
523 return t.constructor == Array ? t : [t];
525 if ( !t.indexOf("//") ) {
526 context = context.documentElement;
527 t = t.substr(2,t.length);
528 } else if ( !t.indexOf("/") ) {
529 context = context.documentElement;
530 t = t.substr(1,t.length);
531 // FIX Assume the root element is right :(
532 if ( t.indexOf("/") >= 1 )
533 t = t.substr(t.indexOf("/"),t.length);
540 while ( t.length > 0 && last != t ) {
544 t = jQuery.cleanSpaces(t).replace( /^\/\//i, "" );
546 var foundToken = false;
548 for ( var i = 0; i < jQuery.token.length; i += 2 ) {
549 var re = new RegExp("^(" + jQuery.token[i] + ")");
553 r = ret = jQuery.map( ret, jQuery.token[i+1] );
554 t = jQuery.cleanSpaces( t.replace( re, "" ) );
561 if ( !t.indexOf(",") || !t.indexOf("|") ) {
562 if ( ret[0] == context ) ret.shift();
563 done = jQuery.merge( done, ret );
565 t = " " + t.substr(1,t.length);
567 var re2 = /^([#.]?)([a-z0-9\\*_-]*)/i;
571 // Ummm, should make this work in all XML docs
572 var oid = document.getElementById(m[2]);
573 r = ret = oid ? [oid] : [];
574 t = t.replace( re2, "" );
576 if ( !m[2] || m[1] == "." ) m[2] = "*";
578 for ( var i = 0; i < ret.length; i++ )
581 jQuery.getAll(ret[i]) :
582 ret[i].getElementsByTagName(m[2])
590 var val = jQuery.filter(t,r);
592 t = jQuery.cleanSpaces(val.t);
596 if ( ret && ret[0] == context ) ret.shift();
597 done = jQuery.merge( done, ret );
602 jQuery.getAll = function(o,r) {
604 var s = o.childNodes;
605 for ( var i = 0; i < s.length; i++ )
606 if ( s[i].nodeType == 1 ) {
608 jQuery.getAll( s[i], r );
613 jQuery.attr = function(o,a,v){
614 if ( a && a.constructor == String ) {
617 "class": "className",
620 a = (fix[a] && fix[a].replace && fix[a]) || a;
621 var r = /-([a-z])/ig;
622 a = a.replace(r,function(z,b){return b.toUpperCase();});
623 if ( v != undefined ) {
625 if ( o.setAttribute && a != "disabled" )
628 return o[a] || o.getAttribute(a) || "";
633 jQuery.filter = function(t,r,not) {
636 g = function(a,f) {return jQuery.grep(a,f,true);};
638 while ( t && t.match(/^[:\\.#\\[a-zA-Z\\*]/) ) {
639 var re = /^\[ *@([a-z0-9*()_-]+) *([~!|*$^=]*) *'?"?([^'"]*)'?"? *\]/i;
643 m = ["", "@", m[2], m[1], m[3]];
645 re = /^(\[) *([^\]]*) *\]/i;
649 re = /^(:)([a-z0-9*_-]*)\( *["']?([^ \)'"]*)['"]? *\)/i;
653 re = /^([:\.#]*)([a-z0-9*_-]*)/i;
658 t = t.replace( re, "" );
660 if ( m[1] == ":" && m[2] == "not" )
661 r = jQuery.filter(m[3],r,false).r;
665 if ( jQuery.g[m[1]].constructor == String )
667 else if ( jQuery.g[m[1]][m[2]] )
668 f = jQuery.g[m[1]][m[2]];
671 eval("f = function(a,i){return " + f + "}");
677 return { r: r, t: t };
680 jQuery.parents = function(a){
682 var c = a.parentNode;
683 while ( c && c != document ) {
690 jQuery.cleanSpaces = function(t){
691 return t.replace(/^\s+|\s+$/g, "");
694 jQuery.ofType = function(a,n,e) {
695 var t = jQuery.grep(jQuery.sibling(a),function(b){ return b.nodeName == a.nodeName; });
696 if ( e ) n = t.length - n - 1;
697 return n != undefined ? t[n] == a : t.length;
700 jQuery.sibling = function(a,n,e) {
702 var tmp = a.parentNode.childNodes;
703 for ( var i = 0; i < tmp.length; i++ ) {
704 if ( tmp[i].nodeType == 1 )
705 type[type.length] = tmp[i];
707 type.n = type.length - 1;
709 if ( e ) n = type.length - n - 1;
710 type.cur = ( type[n] == a );
711 type.prev = ( type.n > 0 ? type[type.n - 1] : null );
712 type.next = ( type.n < type.length - 1 ? type[type.n + 1] : null );
716 jQuery.hasWord = function(e,a) {
717 if ( e == undefined ) return;
718 if ( e.className ) e = e.className;
719 return new RegExp("(^|\\s)" + a + "(\\s|$)").test(e);
722 jQuery.merge = function(a,b) {
724 for ( var k = 0; k < b.length; k++ ) d[k] = b[k];
726 for ( var i = 0; i < a.length; i++ ) {
728 for ( var j = 0; j < b.length; j++ )
731 if ( c ) d[d.length] = a[i];
737 jQuery.grep = function(a,f,s) {
738 if ( f.constructor == String )
739 f = new Function("a","i","return " + f);
742 for ( var i = 0; i < a.length; i++ )
743 if ( (!s && f(a[i],i)) || (s && !f(a[i],i)) )
748 jQuery.map = function(a,f) {
749 if ( f.constructor == String )
750 f = new Function("a","return " + f);
753 for ( var i = 0; i < a.length; i++ ) {
755 if ( t !== null && t != undefined ) {
756 if ( t.constructor != Array ) t = [t];
757 r = jQuery.merge( t, r );
765 // Bind an event to an element
766 // Original by Dean Edwards
767 add: function(element, type, handler) {
768 // For whatever reason, IE has trouble passing the window object
769 // around, causing it to be cloned in the process
770 if ( jQuery.browser == "msie" && element.setInterval != undefined )
773 if (!handler.guid) handler.guid = jQuery.event.guid++;
774 if (!element.events) element.events = {};
775 var handlers = element.events[type];
777 handlers = element.events[type] = {};
778 if (element["on" + type])
779 handlers[0] = element["on" + type];
781 handlers[handler.guid] = handler;
782 element["on" + type] = jQuery.event.handle;
787 // Detach an event or set of events from an element
788 remove: function(element, type, handler) {
790 if (type && element.events[type])
792 delete element.events[type][handler.guid];
794 for ( var i in element.events[type] )
795 delete element.events[type][i];
797 for ( var j in element.events )
798 jQuery.event.remove( element, j );
801 trigger: function(element,type,data) {
802 data = data || [ jQuery.event.fix({ type: type }) ];
803 if ( element && element["on" + type] )
804 element["on" + type].apply( element, data );
807 handle: function(event) {
808 // Handle adding events to items in IFrames, in IE
810 jQuery.event.fix( ((this.ownerDocument || this.document ||
811 this).parentWindow || window).event );
813 // If no correct event was found, fail
814 if ( !event ) return;
816 var returnValue = true, handlers = [];
818 for ( var j in this.events[event.type] )
819 handlers[handlers.length] = this.events[event.type][j];
821 for ( var i = 0; i < handlers.length; i++ )
822 if ( handlers[i].constructor == Function ) {
823 this.handleEvent = handlers[i];
824 if (this.handleEvent(event) === false) {
825 event.preventDefault();
826 event.stopPropagation();
833 fix: function(event) {
835 event.preventDefault = function() {
836 this.returnValue = false;
839 event.stopPropagation = function() {
840 this.cancelBubble = true;