I have a div that is created by Ajax with .append(html) function,
I’m trying to select that div and delete it, but I can’t select it. How to select that div that is created dynamically by the .append() function?
I created like this,
$("#loadplace"+Id).append(html);
And I trying to delete like this;
$('#load_comment'+id).slideUp('slow', function() {$(this).remove();});
1 Answer