diff options
author | John Resig <jeresig@gmail.com> | 2006-08-18 04:27:57 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-18 04:27:57 +0000 |
commit | b91f8a9e304b8b64b8e71e9e0dc0cd9871c0a868 (patch) | |
tree | bd18d2a96cab78524da983b63a33b76d07d0a756 | |
parent | 065cd7ecf62c7b2ad5b58d447aca7a9cdb6f7bcb (diff) | |
download | jquery-b91f8a9e304b8b64b8e71e9e0dc0cd9871c0a868.tar.gz jquery-b91f8a9e304b8b64b8e71e9e0dc0cd9871c0a868.zip |
Added support for :selected.
-rw-r--r-- | src/jquery/jquery.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index ec9711638..8167d1bdd 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1029,7 +1029,8 @@ jQuery.extend({ // Form elements enabled: "!a.disabled", disabled: "a.disabled", - checked: "a.checked" + checked: "a.checked", + selected: "a.selected" }, ".": "jQuery.className.has(a,m[2])", "@": { |