How Can I Use Remove Method In JQuery With Example

admin_img Posted By Bajarangi soft , Posted On 13-10-2020

In jQuery remove() method removes the selected element(s) and its child elements. So today we discuss how to use it

How Can I Use Remove Method In JQuery With Example

Step 1:Create index.html file and implement below code.

<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 class="btn btn-primary">Remove div element</button>

Step 2:Implement jquery to use remove method.
<script>
    $(document).ready(function(){
        $("button").click(function(){
            $("#div1").remove();
        });
    });
</script>

Complete Code For Remove Method In JQuery
<!DOCTYPE html>
<html>
<head>
    <title>How Can I Use Remove Method In JQuery With Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<style>
    body {
        background: darkolivegreen;
    }

</style>
<body>
<div class="container">
    <br><br><br>
    <div class="text-center">
        <h2 id="color" style="color: White">Remove Method In JQuery</h2>
    </div>
    <br>
    <br>

    <div class="well">
        <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 class="btn btn-primary">Remove div element</button>
    </div>

</div>
</body>
</html>
<script>
    $(document).ready(function(){
        $("button").click(function(){
            $("#div1").remove();
        });
    });
</script>

Related Post