Side navigation
#13858 closed bug (invalid)
Opened May 06, 2013 07:28AM UTC
Closed May 21, 2013 08:36AM UTC
jQuery find when the first input id value is 'id'
Reported by: | anonymous | Owned by: | anonymous |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.9.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Given following HTML:
<form>
<input id="id" />
</form>
and jQuery code:
$('form').find('input');
will return empty array.
The output of $('form') will be form#[object HTMLInputElement] instead of just form. So that $('form').find('input') fail.
Any other id value except 'id' workaround.
Attachments (0)
Change History (3)
Changed May 06, 2013 07:47AM UTC by comment:1
Changed May 06, 2013 04:17PM UTC by comment:2
owner: | → anonymous |
---|---|
status: | new → pending |
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/. Open the link and click to "Fork" (in the top menu) to get started.
Changed May 21, 2013 08:36AM UTC by comment:3
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Can't see any problem:
http://jsfiddle.net/rhwRt/
I think your original html-code may be broken (e.g. missing closing > ).