Modify ↓
Ticket #69 (closed bug: fixed)
Replacement :input, :radio, etc.
| Reported by: | john | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | core | Version: | |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
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 :-)