Before you mark this as a duplicate, this is how my question is different.
Due to the lack of content actually on google, all that I can find is removing the parent ID, I don't think that applies as the parent ID would only remove panel-body, then leave panel-heading and the panel div there.
I wanted to ask a quick question that I couldn't find any help with online. I have a bootstrap panel, which has two div's insdie of it, one for the panel-header and one for the panel-body. Inside the panel-body div I have a btn btn-success button that I want to remove the whole panel on click.
<div id="draggable" class="habbo-notification panel panel-default">
    <div class="panel-heading">
        Panel Header
    </div>
    <div class="panel-body">
        <div class="row">
            <div class="col-md-4">
                <font color="#B00049">
                    <h1 style="font-size:144px;margin-top:0;margin-left:14px;"><i class="fa fa-globe fa-6" aria-hidden="true"></i><h1>
                </font>
            </div>
            <div class="col-md-8">
                <p>
            Some content here
        </p>
        <br>
        <div class="btn btn-success" onclick="" style="width:100%">Close this</div>
            </div>
        </div>
    </div>
</div>
</div>
In javascript or jquery (don't mind which one), how could I remove the entire div onclick of the button, without knowing the ID or class, or having any access to the panel div at all. I declare the panel-body's content somewhere other than the place where I declare the panel and it's two divs panel-body and panel-header.
I want to remove the whole panel div that the button is assigned to, on click?
<div class="btn btn-success" onclick="" style="width:100%">Close this</div>
Can anyone help?
 
     
     
    