Я пытаюсь выбрать ссылку в HTML-строке, когда у меня наведен указатель мыши, возможно, я делаю это неправильно.
Вот мой HTML:
<table id="table-id">
<tr>
<td>yeah</td>
<td>some content</td>
<td><a href="#" class="remove">delete</a></td>
</tr>
...
</table>
И код JQuery:
$('#table-id tr').hover(function(){
$(this).children('.remove').show(); # I don't get the link in there
}, function(){
$(this).children('.remove').hide(); # and thus not here neither
});
Ссылки были скрыты с:
$('a.remove').each(function(){
$(this).hide();
$(this).click(function(){
return confirm("are you sure?");
});
});
Есть идеи о том, что мне здесь не хватает?