2009-03-18 22:15:38 +01:00
|
|
|
jQuery.fn.extend({
|
2009-03-23 00:25:03 +01:00
|
|
|
attr: function( name, value ) {
|
2009-09-09 23:14:28 +02:00
|
|
|
return access(this, name, value, true, jQuery.attr);
|
2009-03-18 22:15:38 +01:00
|
|
|
},
|
|
|
|
|
2009-09-08 03:07:50 +02:00
|
|
|
addClass: function( value ) {
|
2009-12-10 06:15:49 +01:00
|
|
|
if(jQuery.isFunction(value)) {
|
|
|
|
return this.each(function() {
|
|
|
|
jQuery(this).addClass( value.call(this) );
|
|
|
|
});
|
|
|
|
}
|
2009-12-10 05:57:19 +01:00
|
|
|
|
2009-09-08 03:07:50 +02:00
|
|
|
if ( value && typeof value === "string" ) {
|
|
|
|
var classNames = (value || "").split(/\s+/);
|
|
|
|
|
|
|
|
for ( var i = 0, l = this.length; i < l; i++ ) {
|
|
|
|
var elem = this[i];
|
|
|
|
|
|
|
|
if ( elem.nodeType === 1 ) {
|
|
|
|
if ( !elem.className ) {
|
|
|
|
elem.className = value;
|
|
|
|
} else {
|
|
|
|
var className = " " + elem.className + " ";
|
|
|
|
for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
|
|
|
|
if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) {
|
|
|
|
elem.className += " " + classNames[c];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
removeClass: function( value ) {
|
2009-12-10 06:15:49 +01:00
|
|
|
if(jQuery.isFunction(value)) {
|
|
|
|
return this.each(function() {
|
|
|
|
jQuery(this).removeClass( value.call(this) );
|
|
|
|
});
|
|
|
|
}
|
2009-12-10 05:57:19 +01:00
|
|
|
|
2009-09-08 03:07:50 +02:00
|
|
|
if ( (value && typeof value === "string") || value === undefined ) {
|
|
|
|
var classNames = (value || "").split(/\s+/);
|
|
|
|
|
|
|
|
for ( var i = 0, l = this.length; i < l; i++ ) {
|
|
|
|
var elem = this[i];
|
|
|
|
|
|
|
|
if ( elem.nodeType === 1 && elem.className ) {
|
|
|
|
if ( value ) {
|
|
|
|
var className = " " + elem.className + " ";
|
|
|
|
for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
|
|
|
|
className = className.replace(" " + classNames[c] + " ", " ");
|
|
|
|
}
|
|
|
|
elem.className = className.substring(1, className.length - 1);
|
|
|
|
} else {
|
|
|
|
elem.className = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2009-03-18 22:15:38 +01:00
|
|
|
hasClass: function( selector ) {
|
2009-09-08 03:07:50 +02:00
|
|
|
var className = " " + selector + " ";
|
|
|
|
for ( var i = 0, l = this.length; i < l; i++ ) {
|
|
|
|
if ( (" " + this[i].className + " ").indexOf( className ) > -1 ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2009-03-18 22:15:38 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
val: function( value ) {
|
|
|
|
if ( value === undefined ) {
|
|
|
|
var elem = this[0];
|
|
|
|
|
|
|
|
if ( elem ) {
|
2009-11-27 20:28:42 +01:00
|
|
|
if( jQuery.nodeName( elem, 'option' ) ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
return (elem.attributes.value || {}).specified ? elem.value : elem.text;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
// We need to handle select boxes special
|
|
|
|
if ( jQuery.nodeName( elem, "select" ) ) {
|
|
|
|
var index = elem.selectedIndex,
|
|
|
|
values = [],
|
|
|
|
options = elem.options,
|
|
|
|
one = elem.type == "select-one";
|
|
|
|
|
|
|
|
// Nothing was selected
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( index < 0 ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
return null;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
// Loop through all the selected options
|
|
|
|
for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
|
|
|
|
var option = options[ i ];
|
|
|
|
|
|
|
|
if ( option.selected ) {
|
|
|
|
// Get the specifc value for the option
|
|
|
|
value = jQuery(option).val();
|
|
|
|
|
|
|
|
// We don't need an array for one selects
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( one ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
return value;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
// Multi-Selects return an array
|
|
|
|
values.push( value );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-23 02:55:17 +01:00
|
|
|
return values;
|
2009-03-18 22:15:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Everything else, we just grab the value
|
|
|
|
return (elem.value || "").replace(/\r/g, "");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2009-07-12 22:19:43 +02:00
|
|
|
// Typecast once if the value is a number
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( typeof value === "number" ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
value += '';
|
2009-12-10 05:57:19 +01:00
|
|
|
}
|
2009-07-12 22:19:43 +02:00
|
|
|
var val = value;
|
2009-03-18 22:15:38 +01:00
|
|
|
|
|
|
|
return this.each(function(){
|
2009-07-12 22:19:43 +02:00
|
|
|
if(jQuery.isFunction(value)) {
|
|
|
|
val = value.call(this);
|
|
|
|
// Typecast each time if the value is a Function and the appended
|
|
|
|
// value is therefore different each time.
|
2009-11-27 20:28:42 +01:00
|
|
|
if( typeof val === "number" ) {
|
2009-12-10 05:57:19 +01:00
|
|
|
val += '';
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-07-12 22:19:43 +02:00
|
|
|
}
|
2009-12-10 05:57:19 +01:00
|
|
|
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( this.nodeType != 1 ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
return;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
|
|
|
if ( jQuery.isArray(val) && /radio|checkbox/.test( this.type ) ) {
|
2009-07-24 00:16:29 +02:00
|
|
|
this.checked = jQuery.inArray(this.value || this.name, val) >= 0;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
else if ( jQuery.nodeName( this, "select" ) ) {
|
2009-07-12 22:19:43 +02:00
|
|
|
var values = jQuery.makeArray(val);
|
2009-03-18 22:15:38 +01:00
|
|
|
|
|
|
|
jQuery( "option", this ).each(function(){
|
2009-07-24 00:16:29 +02:00
|
|
|
this.selected = jQuery.inArray( this.value || this.text, values ) >= 0;
|
2009-03-18 22:15:38 +01:00
|
|
|
});
|
|
|
|
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( !values.length ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
this.selectedIndex = -1;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
|
|
|
} else {
|
2009-07-12 22:19:43 +02:00
|
|
|
this.value = val;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery.each({
|
|
|
|
removeAttr: function( name ) {
|
|
|
|
jQuery.attr( this, name, "" );
|
2009-11-27 20:28:42 +01:00
|
|
|
if (this.nodeType == 1) {
|
2009-03-18 22:15:38 +01:00
|
|
|
this.removeAttribute( name );
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
toggleClass: function( classNames, state ) {
|
2009-05-02 23:14:38 +02:00
|
|
|
var type = typeof classNames;
|
|
|
|
if ( type === "string" ) {
|
|
|
|
// toggle individual class names
|
|
|
|
var isBool = typeof state === "boolean", className, i = 0,
|
|
|
|
classNames = classNames.split( /\s+/ );
|
|
|
|
while ( (className = classNames[ i++ ]) ) {
|
|
|
|
// check each className given, space seperated list
|
2009-09-08 03:07:50 +02:00
|
|
|
state = isBool ? state : !jQuery(this).hasClass( className );
|
|
|
|
jQuery(this)[ state ? "addClass" : "removeClass" ]( className );
|
2009-05-02 23:14:38 +02:00
|
|
|
}
|
|
|
|
} else if ( type === "undefined" || type === "boolean" ) {
|
2009-05-03 00:35:39 +02:00
|
|
|
if ( this.className ) {
|
|
|
|
// store className if set
|
2009-05-02 23:14:38 +02:00
|
|
|
jQuery.data( this, "__className__", this.className );
|
|
|
|
}
|
2009-05-03 00:35:39 +02:00
|
|
|
// toggle whole className
|
|
|
|
this.className = this.className || classNames === false ? "" : jQuery.data( this, "__className__" ) || "";
|
2009-05-02 23:14:38 +02:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
}
|
|
|
|
}, function(name, fn){
|
2009-12-10 05:57:19 +01:00
|
|
|
jQuery.fn[ name ] = function(val, state){
|
2009-12-10 06:15:49 +01:00
|
|
|
if( jQuery.isFunction( val ) ) {
|
|
|
|
return this.each(function() { jQuery(this)[ name ]( val.call(this), state ); });
|
|
|
|
}
|
2009-12-10 05:57:19 +01:00
|
|
|
|
2009-03-18 22:15:38 +01:00
|
|
|
return this.each( fn, arguments );
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery.extend({
|
2009-12-10 06:28:33 +01:00
|
|
|
attrFn: {
|
|
|
|
val: true,
|
|
|
|
addClass: true,
|
|
|
|
css: true,
|
|
|
|
html: true,
|
|
|
|
text: true,
|
|
|
|
append: true,
|
|
|
|
prepend: true,
|
|
|
|
data: true,
|
|
|
|
width: true,
|
|
|
|
height: true,
|
2009-12-10 23:03:24 +01:00
|
|
|
offset: true,
|
|
|
|
bind: true
|
2009-12-10 06:28:33 +01:00
|
|
|
},
|
|
|
|
|
2009-03-18 22:15:38 +01:00
|
|
|
attr: function( elem, name, value ) {
|
|
|
|
// don't set attributes on text and comment nodes
|
2009-11-27 20:28:42 +01:00
|
|
|
if (!elem || elem.nodeType == 3 || elem.nodeType == 8) {
|
2009-03-18 22:15:38 +01:00
|
|
|
return undefined;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-12-10 06:28:33 +01:00
|
|
|
|
|
|
|
if ( name in jQuery.attrFn ) {
|
2009-09-15 19:23:26 +02:00
|
|
|
return jQuery(elem)[name](value);
|
|
|
|
}
|
2009-12-10 05:57:19 +01:00
|
|
|
|
2009-07-19 15:32:53 +02:00
|
|
|
var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ),
|
2009-03-18 22:15:38 +01:00
|
|
|
// Whether we are setting (or getting)
|
|
|
|
set = value !== undefined;
|
|
|
|
|
|
|
|
// Try to normalize/fix the name
|
|
|
|
name = notxml && jQuery.props[ name ] || name;
|
|
|
|
|
|
|
|
// Only do all the following if this is a node (faster for style)
|
2009-07-19 15:32:53 +02:00
|
|
|
if ( elem.nodeType === 1 ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
|
|
|
|
// These attributes require special treatment
|
|
|
|
var special = /href|src|style/.test( name );
|
|
|
|
|
|
|
|
// Safari mis-reports the default selected property of a hidden option
|
|
|
|
// Accessing the parent's selectedIndex property fixes it
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( name == "selected" && elem.parentNode ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
elem.parentNode.selectedIndex;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
// If applicable, access the attribute via the DOM 0 way
|
|
|
|
if ( name in elem && notxml && !special ) {
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( set ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
// We can't allow the type property to be changed (since it causes problems in IE)
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( name == "type" && /(button|input)/i.test(elem.nodeName) && elem.parentNode ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
throw "type property can't be changed";
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-12-08 00:43:36 +01:00
|
|
|
// browsers index elements by id/name on forms, give priority to attributes.
|
|
|
|
if( jQuery.nodeName( elem, "form" ) ) {
|
|
|
|
// convert the value to a string (all browsers do this but IE) see #1070
|
|
|
|
elem.setAttribute( name, "" + value );
|
|
|
|
} else {
|
|
|
|
elem[ name ] = value;
|
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// browsers index elements by id/name on forms, give priority to attributes.
|
2009-11-27 20:28:42 +01:00
|
|
|
if( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
return elem.getAttributeNode( name ).nodeValue;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
|
|
|
|
// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
|
|
|
|
if ( name == "tabIndex" ) {
|
|
|
|
var attributeNode = elem.getAttributeNode( "tabIndex" );
|
|
|
|
return attributeNode && attributeNode.specified
|
|
|
|
? attributeNode.value
|
2009-07-19 15:21:51 +02:00
|
|
|
: /(button|input|object|select|textarea)/i.test(elem.nodeName)
|
2009-03-18 22:15:38 +01:00
|
|
|
? 0
|
2009-07-19 15:21:51 +02:00
|
|
|
: /^(a|area)$/i.test(elem.nodeName) && elem.href
|
2009-03-18 22:15:38 +01:00
|
|
|
? 0
|
|
|
|
: undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return elem[ name ];
|
|
|
|
}
|
|
|
|
|
2009-03-23 00:25:03 +01:00
|
|
|
if ( !jQuery.support.style && notxml && name == "style" ) {
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( set ) {
|
2009-03-23 00:25:03 +01:00
|
|
|
elem.style.cssText = "" + value;
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-23 00:25:03 +01:00
|
|
|
return elem.style.cssText;
|
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
|
2009-11-27 20:28:42 +01:00
|
|
|
if ( set ) {
|
2009-03-18 22:15:38 +01:00
|
|
|
// convert the value to a string (all browsers do this but IE) see #1070
|
|
|
|
elem.setAttribute( name, "" + value );
|
2009-11-27 20:28:42 +01:00
|
|
|
}
|
2009-03-18 22:15:38 +01:00
|
|
|
var attr = !jQuery.support.hrefNormalized && notxml && special
|
|
|
|
// Some attributes require a special call on IE
|
|
|
|
? elem.getAttribute( name, 2 )
|
|
|
|
: elem.getAttribute( name );
|
|
|
|
|
|
|
|
// Non-existent attributes return null, we normalize to undefined
|
|
|
|
return attr === null ? undefined : attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// elem is actually elem.style ... set the style
|
2009-03-23 00:25:03 +01:00
|
|
|
// Using attr for specific style information is now deprecated. Use style insead.
|
|
|
|
return jQuery.style(elem, name, value);
|
2009-03-18 22:15:38 +01:00
|
|
|
}
|
2009-07-11 15:57:38 +02:00
|
|
|
});
|