jquery remove child elements code example
Example 1: how remove child in jquery
//for remove the child in jquery you can use the below code
$(".parent").empty();
Example 2: delete all child elements jquery
$("div").empty();
Example 3: how to remove html element in jquery
$("button").click(function(){
$("p").remove();
});
Example 4: jquery remove elemtns
.remove("#elemnt_id .elemnt_class");