I have following html:
<table>
....
<tr>
....
</tr>
....
<tr id="myid">
<....>
<input value="..." />
</....>
</tr>
<tr id="myanotherid">
<....>
<input value="..." />
</....>
</tr>
</table>
How can I set the focus on this input field in table row "myid" with jquery ? I can't set id on input field, because this html was generated automatically.