Opened 13 years ago
Closed 12 years ago
#5535 closed bug (worksforme)
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']");
Attachments (1)
Change History (4)
Changed 13 years ago by
Attachment: | test_jquery_attribute_filter.html added |
---|
comment:1 Changed 12 years ago by
Status: | new → open |
---|
http://jsfiddle.net/dmethvin/kxVMd/
Thanks for the analysis!
comment:2 Changed 12 years ago by
Milestone: | 1.4 → 1.next |
---|
comment:3 Changed 12 years ago by
Resolution: | → worksforme |
---|---|
Status: | open → closed |
Seems to work in the current jQuery.
Note: See
TracTickets for help on using
tickets.
Example code. Follow instructions in document to see bug.