#69 closed bug (fixed)
Replacement :input, :radio, etc.
Reported by: | john | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | core | Version: | |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
There should be a feature to replace the removed "input" hack, something like: :input (input, select, textarea) :button :radio :checkbox :submit :text :password etc.
Change History (4)
comment:1 Changed 17 years ago by
comment:3 Changed 17 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
Type: | feature → bug |
:input should also select button elements
Note: See
TracTickets for help on using
tickets.
AFAIK this requires only some additions to the jQuery.g:? object, something like this:
input: "...",
text: "...",
password: "...",
checkbox: "...",
radio: "...",
submit: "...",
image: "...",
reset: "...",
button: "...",
hidden: "...",
file: "..."
These are all control types according to http://www.w3.org/TR/html4/interact/forms.html#h-17.4.1
If you provide one sample implementation, I could add the rest :-)