JSFiddle - React, Tailwind, and code Playground

by deepak sisodiya

HTML

<div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;">This is some text in the div.
    <p>This is a paragraph in the div.</p>
    <p>This is another paragraph in the div.</p>
</div>
<br>
<button>Remove div element</button>

JavaScript

// jquery remove() - Removes the selected element (and its child elements)

$("button").click(function () {
    $("#div1").remove();
});