Side navigation
#9660 closed bug (invalid)
Opened June 23, 2011 04:37PM UTC
Closed June 23, 2011 04:45PM UTC
Last modified June 23, 2011 05:09PM UTC
jQuery selector "[value=foo]" doesn't work if value set on runtime
Reported by: | Suschev.Artem+jQuery_bt@gmail.com | 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
Attachments (0)
Change History (2)
Changed June 23, 2011 04:45PM UTC by comment:1
component: | unfiled → selector |
---|---|
priority: | undecided → low |
resolution: | → invalid |
status: | new → closed |
Changed June 23, 2011 05:09PM UTC by comment:2
Thx!
Also, this will allow ''$('input[value=foo]')'' to work - http://jsfiddle.net/VwVhD/25/
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/