#9660 closed bug (invalid)
jQuery selector "[value=foo]" doesn't work if value set on runtime
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | selector | Version: | 1.4.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
With jQuery 1.4.2/1.2.6 and others this will work (if "foo" typed by user on runtime):
$('input[value=foo]')
But with 1.4.3 and higher this doesn't work.
Try it yourself:
http://jsfiddle.net/VwVhD/11/ - this one with 1.2.6
http://jsfiddle.net/VwVhD/14/ - this one with 1.6
Change History (2)
comment:1 Changed 12 years ago by
Component: | unfiled → selector |
---|---|
Priority: | undecided → low |
Resolution: | → invalid |
Status: | new → closed |
comment:2 Changed 12 years ago by
Thx! Also, this will allow $('input[value=foo]') to work - http://jsfiddle.net/VwVhD/25/
Note: See
TracTickets for help on using
tickets.
The value attribute does not stay up-to-date with the current value. It is only responsible for setting the default or initial value. You are thinking of the value property, which cannot be used in a selection. You can do something like this instead: http://jsfiddle.net/timmywil/VwVhD/15/