aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2010-10-25 13:06:23 -0700
committerJohn Resig <jeresig@gmail.com>2010-10-25 13:06:23 -0700
commit7e4f88e20639ee7b4c360b0b4636ece0c0984bd2 (patch)
tree89b369e17060c7e64277575d2cf88b4bce0cd7a4
parent09022e0b09db71259751e7146bb64727615028af (diff)
parent086822e6419c89c33b322bacbbc891148a4b3647 (diff)
downloadjquery-7e4f88e20639ee7b4c360b0b4636ece0c0984bd2.tar.gz
jquery-7e4f88e20639ee7b4c360b0b4636ece0c0984bd2.zip
Merge branch '6897' of http://github.com/SlexAxton/jquery into SlexAxton-6897
-rw-r--r--src/attributes.js13
-rw-r--r--src/support.js14
2 files changed, 13 insertions, 14 deletions
diff --git a/src/attributes.js b/src/attributes.js
index 147c353f4..4393a9fdb 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -9,6 +9,19 @@ var rclass = /[\n\t]/g,
rclickable = /^a(?:rea)?$/i,
rradiocheck = /^(?:radio|checkbox)$/i;
+jQuery.props = {
+ "for": "htmlFor",
+ "class": "className",
+ readonly: "readOnly",
+ maxlength: "maxLength",
+ cellspacing: "cellSpacing",
+ rowspan: "rowSpan",
+ colspan: "colSpan",
+ tabindex: "tabIndex",
+ usemap: "useMap",
+ frameborder: "frameBorder"
+};
+
jQuery.fn.extend({
attr: function( name, value ) {
return jQuery.access( this, name, value, true, jQuery.attr );
diff --git a/src/support.js b/src/support.js
index b9c10c7a2..67b41c4a7 100644
--- a/src/support.js
+++ b/src/support.js
@@ -193,18 +193,4 @@
// release memory in IE
root = script = div = all = a = null;
})();
-
-jQuery.props = {
- "for": "htmlFor",
- "class": "className",
- readonly: "readOnly",
- maxlength: "maxLength",
- cellspacing: "cellSpacing",
- rowspan: "rowSpan",
- colspan: "colSpan",
- tabindex: "tabIndex",
- usemap: "useMap",
- frameborder: "frameBorder"
-};
-
})( jQuery );