jquery removechild 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: remove item jquery
$( ".hello" ).remove();
Example 3: jquery remove element
$( ".class" ).remove();
$( "#id" ).remove();
$( "div" ).remove();