次のように定義されたテーブルがあります
<table>
<tr>
<td>
<input type='text' />
</td>
<td>
<button id ='first'>Button</button>
</td>
<td>
<input type='text' />
</td>
</tr>
$("#first").live('click',function(){
$(this).prev().remove();
$(this).remove();
});
の前の要素を削除するにはどうすればよいですかtd
。しかし、私は削除したくありませんtd