First batch of doc/commenting additions.
This commit is contained in:
parent
e2c2a9392e
commit
4ad5fcb4f7
552
jquery/jquery.js
vendored
552
jquery/jquery.js
vendored
|
@ -80,6 +80,8 @@ jQuery.fn = jQuery.prototype = {
|
||||||
* The current SVN version of jQuery.
|
* The current SVN version of jQuery.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
|
* @property
|
||||||
|
* @name jquery
|
||||||
* @type String
|
* @type String
|
||||||
*/
|
*/
|
||||||
jquery: "$Rev$",
|
jquery: "$Rev$",
|
||||||
|
@ -87,6 +89,15 @@ jQuery.fn = jQuery.prototype = {
|
||||||
/**
|
/**
|
||||||
* The number of elements currently matched.
|
* The number of elements currently matched.
|
||||||
*
|
*
|
||||||
|
* @property
|
||||||
|
* @name length
|
||||||
|
* @type Number
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of elements currently matched.
|
||||||
|
*
|
||||||
|
* @name size
|
||||||
* @type Number
|
* @type Number
|
||||||
*/
|
*/
|
||||||
size: function() {
|
size: function() {
|
||||||
|
@ -94,16 +105,41 @@ jQuery.fn = jQuery.prototype = {
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Access the elements matched. If a number is provided,
|
* Access all matched elements. This serves as a backwards-compatible
|
||||||
* the Nth element is returned, otherwise, an array of all
|
* way of accessing all matched elements (other than the jQuery object
|
||||||
* matched items is returned.
|
* itself, which is, in fact, an array of elements).
|
||||||
*
|
*
|
||||||
* @type Array,DOMElement
|
* @name get
|
||||||
|
* @type Array<Element>
|
||||||
*/
|
*/
|
||||||
get: function(num) {
|
|
||||||
|
/**
|
||||||
|
* Access a single matched element. <tt>num</tt> is used to access the
|
||||||
|
* <tt>num</tt>th element matched.
|
||||||
|
*
|
||||||
|
* @name get
|
||||||
|
* @type Element
|
||||||
|
* @param Number num Access the element in the <tt>num</tt>th position.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the jQuery object to an array of elements.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @name get
|
||||||
|
* @type jQuery
|
||||||
|
* @param Elements elems An array of elements
|
||||||
|
*/
|
||||||
|
get: function( num ) {
|
||||||
|
// Watch for when an array (of elements) is passed in
|
||||||
if ( num && num.constructor == Array ) {
|
if ( num && num.constructor == Array ) {
|
||||||
|
|
||||||
|
// Use a tricky hack to make the jQuery object
|
||||||
|
// look and feel like an array
|
||||||
this.length = 0;
|
this.length = 0;
|
||||||
[].push.apply( this, num );
|
[].push.apply( this, num );
|
||||||
|
|
||||||
|
return this;
|
||||||
} else
|
} else
|
||||||
return num == undefined ?
|
return num == undefined ?
|
||||||
|
|
||||||
|
@ -114,28 +150,123 @@ jQuery.fn = jQuery.prototype = {
|
||||||
this[num];
|
this[num];
|
||||||
},
|
},
|
||||||
|
|
||||||
each: function(f) {
|
/**
|
||||||
for ( var i = 0; i < this.size(); i++ )
|
* Execute a function within the context of every matched element.
|
||||||
f.apply( this[i], [i] );
|
* This means that every time the passed-in function is executed
|
||||||
|
* (which is once for every element matched) the 'this' keyword
|
||||||
|
* points to the specific element.
|
||||||
|
*
|
||||||
|
* Additionally, the function, when executed, is passed a single
|
||||||
|
* argument representing the position of the element in the matched
|
||||||
|
* set.
|
||||||
|
*
|
||||||
|
* @name each
|
||||||
|
* @type jQuery
|
||||||
|
* @param Function fn A function to execute
|
||||||
|
*/
|
||||||
|
each: function( fn ) {
|
||||||
|
// Iterate through all of the matched elements
|
||||||
|
for ( var i = 0; i < this.length; i++ )
|
||||||
|
|
||||||
|
// Execute the function within the context of each element
|
||||||
|
fn.apply( this[i], [i] );
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
set: function(a,b) {
|
|
||||||
return this.each(function(){
|
/**
|
||||||
if ( b === undefined )
|
* Access a property on the first matched element.
|
||||||
for ( var j in a )
|
* This method makes it easy to retreive a property value
|
||||||
jQuery.attr(this,j,a[j]);
|
* from the first matched element.
|
||||||
else
|
*
|
||||||
jQuery.attr(this,a,b);
|
* @name attr
|
||||||
});
|
* @type Object
|
||||||
|
* @param String name The name of the property to access.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a hash of key/value object properties to all matched elements.
|
||||||
|
* This serves as the best way to set a large number of properties
|
||||||
|
* on all matched elements.
|
||||||
|
*
|
||||||
|
* @name attr
|
||||||
|
* @type jQuery
|
||||||
|
* @param Hash prop A set of key/value pairs to set as object properties.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a single property to a value, on all matched elements.
|
||||||
|
*
|
||||||
|
* @name attr
|
||||||
|
* @type jQuery
|
||||||
|
* @param String key The name of the property to set.
|
||||||
|
* @param Object value The value to set the property to.
|
||||||
|
*/
|
||||||
|
attr: function( key, value ) {
|
||||||
|
// Check to see if we're setting style values
|
||||||
|
return key.constructor != String || value ?
|
||||||
|
this.each(function(){
|
||||||
|
// See if we're setting a hash of styles
|
||||||
|
if ( value == undefined )
|
||||||
|
// Set all the styles
|
||||||
|
for ( var prop in key )
|
||||||
|
jQuery.attr(
|
||||||
|
type ? this.style : this,
|
||||||
|
prop, key[prop]
|
||||||
|
);
|
||||||
|
|
||||||
|
// See if we're setting a single key/value style
|
||||||
|
else
|
||||||
|
jQuery.attr(
|
||||||
|
type ? this.style : this,
|
||||||
|
key, value
|
||||||
|
);
|
||||||
|
}) :
|
||||||
|
|
||||||
|
// Look for the case where we're accessing a style value
|
||||||
|
jQuery[ type || "attr" ]( this[0], key );
|
||||||
},
|
},
|
||||||
html: function(h) {
|
|
||||||
return h == undefined && this.size() ?
|
/**
|
||||||
this[0].innerHTML : this.set( "innerHTML", h );
|
* Access a style property on the first matched element.
|
||||||
},
|
* This method makes it easy to retreive a style property value
|
||||||
val: function(h) {
|
* from the first matched element.
|
||||||
return h == undefined && this.size() ?
|
*
|
||||||
this[0].value : this.set( "value", h );
|
* @name css
|
||||||
|
* @type Object
|
||||||
|
* @param String name The name of the property to access.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a hash of key/value style properties to all matched elements.
|
||||||
|
* This serves as the best way to set a large number of style properties
|
||||||
|
* on all matched elements.
|
||||||
|
*
|
||||||
|
* @name css
|
||||||
|
* @type jQuery
|
||||||
|
* @param Hash prop A set of key/value pairs to set as style properties.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a single style property to a value, on all matched elements.
|
||||||
|
*
|
||||||
|
* @name css
|
||||||
|
* @type jQuery
|
||||||
|
* @param String key The name of the property to set.
|
||||||
|
* @param Object value The value to set the property to.
|
||||||
|
*/
|
||||||
|
css: function( key, value ) {
|
||||||
|
return this.attr( key, value, "css" );
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retreive the text contents of all matched elements. The result is
|
||||||
|
* a string that contains the combined text contents of all matched
|
||||||
|
* elements. This method works on both HTML and XML documents.
|
||||||
|
*
|
||||||
|
* @name text
|
||||||
|
* @type String
|
||||||
|
*/
|
||||||
text: function(e) {
|
text: function(e) {
|
||||||
e = e || this;
|
e = e || this;
|
||||||
var t = "";
|
var t = "";
|
||||||
|
@ -148,65 +279,16 @@ jQuery.fn = jQuery.prototype = {
|
||||||
return t;
|
return t;
|
||||||
},
|
},
|
||||||
|
|
||||||
css: function(a,b) {
|
/**
|
||||||
return a.constructor != String || b ?
|
* Set a single style property to a value, on all matched elements.
|
||||||
this.each(function(){
|
*
|
||||||
if ( b === undefined )
|
* @name wrap
|
||||||
for ( var j in a )
|
* @type jQuery
|
||||||
jQuery.attr(this.style,j,a[j]);
|
* @any String html A string of HTML, that will be created on the fly and wrapped around the target.
|
||||||
else
|
* @any Element elem A DOM element that will be wrapped.
|
||||||
jQuery.attr(this.style,a,b);
|
* @any Array<Element> elems An array of elements, the first of which will be wrapped.
|
||||||
}) : jQuery.css( this[0], a );
|
* @any Object
|
||||||
},
|
*/
|
||||||
toggle: function() {
|
|
||||||
return this.each(function(){
|
|
||||||
var d = jQuery.css(this,"display");
|
|
||||||
if ( !d || d == "none" )
|
|
||||||
$(this).show();
|
|
||||||
else
|
|
||||||
$(this).hide();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
show: function() {
|
|
||||||
return this.each(function(){
|
|
||||||
this.style.display = this.oldblock ? this.oldblock : "";
|
|
||||||
if ( jQuery.css(this,"display") == "none" )
|
|
||||||
this.style.display = "block";
|
|
||||||
});
|
|
||||||
},
|
|
||||||
hide: function() {
|
|
||||||
return this.each(function(){
|
|
||||||
this.oldblock = jQuery.css(this,"display");
|
|
||||||
if ( this.oldblock == "none" )
|
|
||||||
this.oldblock = "block";
|
|
||||||
this.style.display = "none";
|
|
||||||
});
|
|
||||||
},
|
|
||||||
addClass: function(c) {
|
|
||||||
return this.each(function(){
|
|
||||||
jQuery.className.add(this,c);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
removeClass: function(c) {
|
|
||||||
return this.each(function(){
|
|
||||||
jQuery.className.remove(this,c);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
toggleClass: function(c) {
|
|
||||||
return this.each(function(){
|
|
||||||
if (jQuery.hasWord(this,c))
|
|
||||||
jQuery.className.remove(this,c);
|
|
||||||
else
|
|
||||||
jQuery.className.add(this,c);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
remove: function() {
|
|
||||||
return this.each(function(){
|
|
||||||
this.parentNode.removeChild( this );
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
wrap: function() {
|
wrap: function() {
|
||||||
var a = jQuery.clean(arguments);
|
var a = jQuery.clean(arguments);
|
||||||
return this.each(function(){
|
return this.each(function(){
|
||||||
|
@ -219,68 +301,64 @@ jQuery.fn = jQuery.prototype = {
|
||||||
},
|
},
|
||||||
|
|
||||||
append: function() {
|
append: function() {
|
||||||
var clone = this.size() > 1;
|
return this.domManip(arguments, true, 1, function(a){
|
||||||
var a = jQuery.clean(arguments);
|
this.appendChild( 1 );
|
||||||
return this.domManip(function(){
|
|
||||||
for ( var i = 0; i < a.length; i++ )
|
|
||||||
this.appendChild( clone ? a[i].cloneNode(true) : a[i] );
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
appendTo: function() {
|
|
||||||
var a = arguments;
|
|
||||||
return this.each(function(){
|
|
||||||
for ( var i = 0; i < a.length; i++ )
|
|
||||||
$(a[i]).append( this );
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
prepend: function() {
|
prepend: function() {
|
||||||
var clone = this.size() > 1;
|
return this.domManip(arguments, true, -1, function(a){
|
||||||
var a = jQuery.clean(arguments);
|
this.insertBefore( a, this.firstChild );
|
||||||
return this.domManip(function(){
|
|
||||||
for ( var i = a.length - 1; i >= 0; i-- )
|
|
||||||
this.insertBefore( clone ? a[i].cloneNode(true) : a[i], this.firstChild );
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
before: function() {
|
before: function() {
|
||||||
var clone = this.size() > 1;
|
return this.domManip(arguments, false, 1, function(a){
|
||||||
var a = jQuery.clean(arguments);
|
this.parentNode.insertBefore( a, this );
|
||||||
return this.each(function(){
|
|
||||||
for ( var i = 0; i < a.length; i++ )
|
|
||||||
this.parentNode.insertBefore( clone ? a[i].cloneNode(true) : a[i], this );
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
after: function() {
|
after: function() {
|
||||||
|
return this.domManip(arguments, false, -1, function(a){
|
||||||
|
this.parentNode.insertBefore( a, this.nextSibling );
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A wrapper function for each() to be used by append and prepend.
|
||||||
|
* Handles cases where you're trying to modify the inner contents of
|
||||||
|
* a table, when you actually need to work with the tbody.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @member jQuery
|
||||||
|
* @param {Function} fn The function doing the DOM manipulation.
|
||||||
|
* @type jQuery
|
||||||
|
*/
|
||||||
|
domManip: function(args, table, dir, fn){
|
||||||
var clone = this.size() > 1;
|
var clone = this.size() > 1;
|
||||||
var a = jQuery.clean(arguments);
|
var a = jQuery.clean(args);
|
||||||
|
|
||||||
return this.each(function(){
|
return this.each(function(){
|
||||||
for ( var i = a.length - 1; i >= 0; i-- )
|
var obj = this;
|
||||||
this.parentNode.insertBefore( clone ? a[i].cloneNode(true) : a[i], this.nextSibling );
|
|
||||||
});
|
if ( table && this.nodeName == "TABLE" ) {
|
||||||
},
|
var tbody = this.getElementsByTagName("tbody");
|
||||||
|
|
||||||
|
if ( !tbody.length ) {
|
||||||
|
obj = document.createElement("tbody");
|
||||||
|
this.appendChild( obj );
|
||||||
|
} else
|
||||||
|
obj = tbody[0];
|
||||||
|
}
|
||||||
|
|
||||||
empty: function() {
|
for ( var i = ( dir < 0 ? a.length - 1 : 0 );
|
||||||
return this.each(function(){
|
i != ( dir < 0 ? dir : a.length ); i += dir )
|
||||||
while ( this.firstChild )
|
fn.apply( obj, [ a[i] ] );
|
||||||
this.removeChild( this.firstChild );
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
bind: function(t,f) {
|
|
||||||
return this.each(function(){jQuery.event.add(this,t,f);});
|
|
||||||
},
|
|
||||||
unbind: function(t,f) {
|
|
||||||
return this.each(function(){jQuery.event.remove(this,t,f);});
|
|
||||||
},
|
|
||||||
trigger: function(t) {
|
|
||||||
return this.each(function(){jQuery.event.trigger(this,t);});
|
|
||||||
},
|
|
||||||
|
|
||||||
pushStack: function(a,args) {
|
pushStack: function(a,args) {
|
||||||
var fn = args[args.length-1];
|
var fn = args && args[args.length-1];
|
||||||
|
|
||||||
if ( !fn || fn.constructor != Function ) {
|
if ( !fn || fn.constructor != Function ) {
|
||||||
if ( !this.stack ) this.stack = [];
|
if ( !this.stack ) this.stack = [];
|
||||||
|
@ -303,40 +381,21 @@ jQuery.fn = jQuery.prototype = {
|
||||||
},
|
},
|
||||||
|
|
||||||
find: function(t) {
|
find: function(t) {
|
||||||
return this.pushStack( $.map( this, function(a){
|
return this.pushStack( jQuery.map( this, function(a){
|
||||||
return jQuery.Select(t,a);
|
return jQuery.Select(t,a);
|
||||||
}), arguments );
|
}), arguments );
|
||||||
},
|
},
|
||||||
|
|
||||||
parent: function(a) {
|
|
||||||
var ret = jQuery.map(this,"a.parentNode");
|
|
||||||
if ( a ) ret = jQuery.filter(a,ret).r;
|
|
||||||
return this.pushStack( ret, arguments );
|
|
||||||
},
|
|
||||||
|
|
||||||
parents: function(a) {
|
|
||||||
var ret = jQuery.map(this,jQuery.parents);
|
|
||||||
if ( a ) ret = jQuery.filter(a,ret).r;
|
|
||||||
return this.pushStack( ret, arguments );
|
|
||||||
},
|
|
||||||
|
|
||||||
siblings: function(a) {
|
|
||||||
// Incorrect, need to exclude current element
|
|
||||||
var ret = jQuery.map(this,jQuery.sibling);
|
|
||||||
if ( a ) ret = jQuery.filter(a,ret).r;
|
|
||||||
return this.pushStack( ret, arguments );
|
|
||||||
},
|
|
||||||
|
|
||||||
filter: function(t) {
|
filter: function(t) {
|
||||||
if ( /,/.test(t) ) {
|
return t.constructor == Array ?
|
||||||
var p = t.split(/\s*,\s*/);
|
// Multi Filtering
|
||||||
return this.pushStack( $.map(this,function(a){
|
this.pushStack( jQuery.map(this,function(a){
|
||||||
for ( var i = 0; i < p.length; i++ )
|
for ( var i = 0; i < t.length; i++ )
|
||||||
if ( jQuery.filter(p[i],[a]).r.length )
|
if ( jQuery.filter(t[i],[a]).r.length )
|
||||||
return a;
|
return a;
|
||||||
}), arguments );
|
}), arguments ) :
|
||||||
} else
|
|
||||||
return this.pushStack( jQuery.filter(t,this).r, arguments );
|
this.pushStack( jQuery.filter(t,this).r, arguments );
|
||||||
},
|
},
|
||||||
not: function(t) {
|
not: function(t) {
|
||||||
return this.pushStack( t.constructor == String ?
|
return this.pushStack( t.constructor == String ?
|
||||||
|
@ -359,62 +418,6 @@ jQuery.fn = jQuery.prototype = {
|
||||||
*/
|
*/
|
||||||
is: function(expr) {
|
is: function(expr) {
|
||||||
return jQuery.filter(expr,this).r.length > 0;
|
return jQuery.filter(expr,this).r.length > 0;
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A wrapper function for each() to be used by append and prepend.
|
|
||||||
* Handles cases where you're trying to modify the inner contents of
|
|
||||||
* a table, when you actually need to work with the tbody.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @member jQuery
|
|
||||||
* @param {Function} fn The function doing the DOM manipulation.
|
|
||||||
* @type jQuery
|
|
||||||
*/
|
|
||||||
domManip: function(fn){
|
|
||||||
return this.each(function(){
|
|
||||||
var obj = this;
|
|
||||||
|
|
||||||
if ( this.nodeName == "TABLE" ) {
|
|
||||||
var tbody = this.getElementsByTagName("tbody");
|
|
||||||
|
|
||||||
if ( !tbody.length ) {
|
|
||||||
obj = document.createElement("tbody");
|
|
||||||
this.appendChild( obj );
|
|
||||||
} else
|
|
||||||
obj = tbody[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
fn.apply( obj );
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Similar to the Prototype $A() function, only it allows you to
|
|
||||||
* forcefully pass array-like structures into $().
|
|
||||||
*/
|
|
||||||
jQuery.A = function(a){
|
|
||||||
// Create a temporary, clean, array
|
|
||||||
var r = [];
|
|
||||||
|
|
||||||
// and copy the old array contents over to it
|
|
||||||
for ( var i = 0; i < a.length; i++ )
|
|
||||||
r.push( a[i] );
|
|
||||||
|
|
||||||
// Return the sane jQuery object
|
|
||||||
return $(r);
|
|
||||||
};
|
|
||||||
|
|
||||||
jQuery.className = {
|
|
||||||
add: function(o,c){
|
|
||||||
if (jQuery.hasWord(o,c)) return;
|
|
||||||
o.className += ( o.className ? " " : "" ) + c;
|
|
||||||
},
|
|
||||||
remove: function(o,c){
|
|
||||||
o.className = !c ? "" :
|
|
||||||
o.className.replace(
|
|
||||||
new RegExp("(^|\\s*\\b[^-])"+c+"($|\\b(?=[^-]))", "g"), "");
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -431,8 +434,128 @@ jQuery.className = {
|
||||||
|
|
||||||
// Check to see if the W3C box model is being used
|
// Check to see if the W3C box model is being used
|
||||||
jQuery.boxModel = ( jQuery.browser != "msie" || document.compatMode == "CSS1Compat" );
|
jQuery.boxModel = ( jQuery.browser != "msie" || document.compatMode == "CSS1Compat" );
|
||||||
|
|
||||||
|
var axis = {
|
||||||
|
parent: "a.parentNode",
|
||||||
|
parents: jQuery.parents,
|
||||||
|
ancestors: jQuery.parents,
|
||||||
|
next: "a.nextSibling",
|
||||||
|
prev: "a.previousSibling",
|
||||||
|
siblings: jQuery.sibling
|
||||||
|
};
|
||||||
|
|
||||||
|
for ( var i in axis ) {(function(){
|
||||||
|
var t = axis[i];
|
||||||
|
jQuery.fn[ i ] = function(a) {
|
||||||
|
var ret = jQuery.map(this,t);
|
||||||
|
if ( a ) ret = jQuery.filter(a,ret).r;
|
||||||
|
return this.pushStack( ret, arguments );
|
||||||
|
};
|
||||||
|
})();}
|
||||||
|
|
||||||
|
var to = "html,append,prepend,before,after".split(',');
|
||||||
|
|
||||||
|
for ( var i = 0; i < to.length; i++ ) {(function(){
|
||||||
|
var n = to[i];
|
||||||
|
jQuery.fn[ n + "To" ] = function(){
|
||||||
|
var a = arguments;
|
||||||
|
return this.each(function(){
|
||||||
|
for ( var i = 0; i < a.length; i++ )
|
||||||
|
$(a[i])[n]( this );
|
||||||
|
});
|
||||||
|
};
|
||||||
|
})();}
|
||||||
|
|
||||||
|
var each = {
|
||||||
|
show: function(){
|
||||||
|
this.style.display = this.oldblock ? this.oldblock : "";
|
||||||
|
if ( jQuery.css(this,"display") == "none" )
|
||||||
|
this.style.display = "block";
|
||||||
|
},
|
||||||
|
|
||||||
|
hide: function(){
|
||||||
|
this.oldblock = jQuery.css(this,"display");
|
||||||
|
if ( this.oldblock == "none" )
|
||||||
|
this.oldblock = "block";
|
||||||
|
this.style.display = "none";
|
||||||
|
},
|
||||||
|
|
||||||
|
toggle: function(){
|
||||||
|
var d = jQuery.css(this,"display");
|
||||||
|
$(this)[ !d || d == "none" ? 'show' : 'hide' ]();
|
||||||
|
},
|
||||||
|
|
||||||
|
addClass: function(c){
|
||||||
|
jQuery.className.add(this,c);
|
||||||
|
},
|
||||||
|
|
||||||
|
removeClass: function(c){
|
||||||
|
jQuery.className.remove(this,c);
|
||||||
|
},
|
||||||
|
|
||||||
|
toggleClass: function( c ){
|
||||||
|
jQuery.className[ jQuery.hasWord(this,a) ? 'remove' : 'add' ](this,c);
|
||||||
|
},
|
||||||
|
|
||||||
|
remove: function(){
|
||||||
|
this.parentNode.removeChild( this );
|
||||||
|
},
|
||||||
|
|
||||||
|
empty: function(){
|
||||||
|
while ( this.firstChild )
|
||||||
|
this.removeChild( this.firstChild );
|
||||||
|
},
|
||||||
|
|
||||||
|
bind: function( type, fn ) {
|
||||||
|
jQuery.event.add( this, type, fn );
|
||||||
|
},
|
||||||
|
|
||||||
|
unbind: function( type, fn ) {
|
||||||
|
jQuery.event.remove( this, type, fn );
|
||||||
|
},
|
||||||
|
|
||||||
|
trigger: function( type ) {
|
||||||
|
jQuery.event.trigger( this, type );
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
for ( var i in each ) {(function(){
|
||||||
|
var n = each[i];
|
||||||
|
jQuery.fn[ i ] = function(a,b) {
|
||||||
|
var a = arguments;
|
||||||
|
return this.each(function(){
|
||||||
|
n.apply( this, a );
|
||||||
|
});
|
||||||
|
};
|
||||||
|
})();}
|
||||||
|
|
||||||
|
var attr = {
|
||||||
|
val: 'value',
|
||||||
|
html: 'innerHTML'
|
||||||
|
};
|
||||||
|
|
||||||
|
for ( var i in attr ) {(function(){
|
||||||
|
var n = attr[i];
|
||||||
|
jQuery.fn[ i ] = function(h) {
|
||||||
|
return h == undefined && this.length ?
|
||||||
|
this[0][n] : this.set( n, h );
|
||||||
|
};
|
||||||
|
})();}
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
jQuery.className = {
|
||||||
|
add: function(o,c){
|
||||||
|
if (jQuery.hasWord(o,c)) return;
|
||||||
|
o.className += ( o.className ? " " : "" ) + c;
|
||||||
|
},
|
||||||
|
remove: function(o,c){
|
||||||
|
o.className = !c ? "" :
|
||||||
|
o.className.replace(
|
||||||
|
new RegExp("(^|\\s*\\b[^-])"+c+"($|\\b(?=[^-]))", "g"), "");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
$.swap = function(e,o,f) {
|
$.swap = function(e,o,f) {
|
||||||
for ( var i in o ) {
|
for ( var i in o ) {
|
||||||
e.style["old"+i] = e.style[i];
|
e.style["old"+i] = e.style[i];
|
||||||
|
@ -771,15 +894,14 @@ jQuery.sibling = function(a,n,e) {
|
||||||
type.n = type.length - 1;
|
type.n = type.length - 1;
|
||||||
}
|
}
|
||||||
if ( e ) n = type.length - n - 1;
|
if ( e ) n = type.length - n - 1;
|
||||||
type.cur = ( type[n] == a );
|
type.cur = type[n] == a;
|
||||||
type.prev = ( type.n > 0 ? type[type.n - 1] : null );
|
type.next = type[type.n + 1];
|
||||||
type.next = ( type.n < type.length - 1 ? type[type.n + 1] : null );
|
|
||||||
return type;
|
return type;
|
||||||
};
|
};
|
||||||
|
|
||||||
jQuery.hasWord = function(e,a) {
|
jQuery.hasWord = function(e,a) {
|
||||||
if ( e == undefined ) return;
|
if ( e.className )
|
||||||
if ( e.className ) e = e.className;
|
e = e.className;
|
||||||
return new RegExp("(^|\\s)" + a + "(\\s|$)").test(e);
|
return new RegExp("(^|\\s)" + a + "(\\s|$)").test(e);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -928,4 +1050,4 @@ jQuery.event = {
|
||||||
return event;
|
return event;
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
Loading…
Reference in a new issue