#5546 closed bug (worksforme)
find does not work with two sets of brackets in attribute selector
Reported by: | bradcupit | Owned by: | john |
---|---|---|---|
Priority: | low | Milestone: | 1.4.4 |
Component: | selector | Version: | 1.3.2 |
Keywords: | find bracket brackets attribute selector | Cc: | |
Blocked by: | Blocking: |
Description
the find() method does not work when using an attribute selector to find a value with two sets of brackets:
obj.find("input[name='parent[0].child[0]']")
strangely enough, one set of brackets works:
obj.find("input[name='parent[0].something']")
escaping does not solve the problem. The workaround it to use the jQuery method rather than the find method.
See attached test case.
Attachments (1)
Change History (4)
Changed 13 years ago by
Attachment: | find_test.html added |
---|
comment:2 Changed 12 years ago by
Milestone: | 1.4 → 1.4.4 |
---|---|
Priority: | minor → low |
Resolution: | → worksforme |
Status: | new → closed |
This issue no longer exists
Note: See
TracTickets for help on using
tickets.
test case