テーブル内のすべての画像にonclickを追加する次のjqueryがあります
$("#listtable tr td img").each(
function(intIndex) {
$(this).click(function() {
$(this).load("/Admin/ChangeIdeaStatus/" + $(this).attr('rel'));
});
}
);
これは問題なく動作しますが、テーブル内のすべての行の最初の TD の画像のみが onclick イベントを取得するように変更したいと思います。
以下を試してみましたが、うまくいきません
$("#listtable tr td:first img").each(