День добрый, объясните пожалуйста как удалить вновь созданную строку (одну) у меня почему то удаляются все строки созданные динамически
<script type="text/javascript">
$(document).ready(function(){
$('.add').click(function(){
var str = '<tr><td>____</td></tr>';
$(this).parent().after(str);
$(document).ready(function(){
$('#calendar').simpleDatepicker();
});
$('.del').click(function(){
$('.del').parent().remove();