Side navigation
#5535 closed bug (worksforme)
Opened November 19, 2009 07:04PM UTC
Closed July 11, 2011 08:30PM UTC
Different results for attribute filter strings vs. find specifying attribute
Reported by: | MarkE | Owned by: | john |
---|---|---|---|
Priority: | major | Milestone: | 1.next |
Component: | selector | Version: | 1.3.2 |
Keywords: | attribute filter find | Cc: | |
Blocked by: | Blocking: |
Description
See attached file for example.
<input> tags with different ids. Want to select those where user has typed in specific text.
The following returns inputs which had the value 'foo' when the page was created (unexpected).
$("#inputs input[value='foo']");
The following returns inputs which had the value 'foo' at the time of invocation (expected):
$("#inputs").find("input[value='foo']");
http://jsfiddle.net/dmethvin/kxVMd/
Thanks for the analysis!