diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2007-11-19 16:07:44 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2007-11-19 16:07:44 +0000 |
commit | 5e99807271ebe194b7f0278a929b053b4dd46c81 (patch) | |
tree | 096ec244bbefc3a4c726333438d515d219e5827b /src | |
parent | 2e2a1b8910afcc23b1f71c188dca2d88067d70da (diff) | |
download | jquery-5e99807271ebe194b7f0278a929b053b4dd46c81.tar.gz jquery-5e99807271ebe194b7f0278a929b053b4dd46c81.zip |
Fix for #1944. Added nodeName and tagName to jQuery.props and tests for maxlength, defaultValue, selectedIndex, tagName and nodeName.
Diffstat (limited to 'src')
-rw-r--r-- | src/core.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core.js b/src/core.js index 36d736c17..a42e8f657 100644 --- a/src/core.js +++ b/src/core.js @@ -1206,7 +1206,9 @@ jQuery.extend({ selected: "selected", maxlength: "maxLength", selectedIndex: "selectedIndex", - defaultValue: "defaultValue" + defaultValue: "defaultValue", + tagName: "tagName", + nodeName: "nodeName" } }); |