Код: Выделить всё
$(function () {
$('.edit').one('click', function () {
var id = $(this).attr('id');
var comment$ = $(this).parents('li').prev('li.comment-post');
var text = comment$.text();
comment$.html('' + text + '
');
$('.comment-edit').focus();
});
$('.comment-edit').blur(function(){
alert('text');
var text = $(this).val();
alert(text);
/*var comment$ = $(this).parents('li.comment-post');
$(this).remove();
comment$.text('text');*/
});
});
Что случилось?
Подробнее здесь: https://stackoverflow.com/questions/211 ... r-textarea