jquery remove element from div code example
Example 1: how to remove html element in jquery
$("button").click(function(){
$("p").remove();
});
Example 2: jquery div element find and remove
$(".hello" ).remove();
$("button").click(function(){
$("p").remove();
});
$(".hello" ).remove();