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