以下の jQuery コードでわかるように、テーブルの td 内の最初の div を指しています。
$('table tr td div').css("position", "relative");
しかし、私はそれでいくつかの問題を抱えているので、これを試しました:
$('table tr td').parents('div:first').css({position:'relative'});
しかし、これもうまくいきません。コードの何が問題になっていますか?
私のHTML構造は次のとおりです。
<table>
<tr>
<td><!-- all id for the div and image inside the td are dynamic -->
<div><!-- Need to access this div -->
<!-- content --->
</div>
</td>
</tr>
</table>