Modify ↓
Ticket #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: | |
| Blocking: | Blocked by: |
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
Change History
Changed 3 years ago by MarkE
-
attachment
test_jquery_attribute_filter.html
added
comment:1 Changed 2 years ago by dmethvin
- Status changed from new to open
http://jsfiddle.net/dmethvin/kxVMd/
Thanks for the analysis!
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.

Example code. Follow instructions in document to see bug.