How to remove all the elements from DOM using element ID in jQuery?


To remove all the elements from DOM using element ID, use the remove() method.

Example

You can try to run the following code to remove all the elements from DOM using element ID:

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(){
   $("button").click(function(){
      $("#mydiv").remove();
   });
});
</script>
</head>
<body>
<button>Click to remove all elements</button><br>
<div id="mydiv" style="height:200px;width:350px;border:2px solid red;background-color:blue;">

<p>This is some text.</p>

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

</body>
</html>

Updated on: 17-Dec-2019

900 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements