everyone! I did this:
$('#kill').live('click',function(){
$closeId = $(this).parent().attr('id');
$('#suggested').find('#' + $closeId).removeClass().addClass('active');
});
and it doesn't work. I tried to test it:
var $test = $('#suggested').find('#' + $closeId).length;
and it's return '0', it's incorrect. It would be great if you know how to fix it.
Thanks!