Side navigation
#9729 closed bug (invalid)
Opened July 02, 2011 07:02AM UTC
Closed July 02, 2011 07:12PM UTC
selector bug in google chrome & firefox
Reported by: | xboyli@126.com | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | traversing | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
HTML code:
<table>
<form>
<tr>
<td>
<input type="text"/>
</td>
</tr>
</form>
</table>
JS:
$('form input').val('some_value'); doesn't work.
$('table input').val('some_value'); work well.
this occurs while using google chrome & firefox.
Have I make a mistake or it's a bug?
Attachments (0)
Change History (1)
Changed July 02, 2011 07:12PM UTC by comment:1
component: | unfiled → traversing |
---|---|
priority: | undecided → low |
resolution: | → invalid |
status: | new → closed |
The markup is invalid HTML. The form tag can't be nested inside a table that way. Wrap the table in the form instead.