Remove All Elements Except the First One Using jQuery



To remove all elements except the first one, use the remove() method with the slice() method in jQuery. You can try to run the following code to remove all elements except for first one using jQuery −

Example

Live Demo

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $(".button1").click(function(){
        $("span").remove();
    });
   
     $(".button2").click(function(){
         $('span').slice(1).remove();
     });
     
  });
</script>
</head>
<body>
<button class="button2">Hide all, except first element</button>
<button class="button1">Hide all the elements</button>

<span>
<p>This is demo text.</p>
<p>This is demo text.</p>
</span>
<span>
<p>This is demo text.</p>
<p>This is demo text.</p>
</span>
<span>
<p>This is demo text.</p>
<p>This is demo text.</p>
</span>

</body>
</html>
Updated on: 2020-02-14T10:15:16+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements