- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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:
<!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>
- Related Articles
- How to remove an element from DOM using jQuery?
- How to remove DOM elements in jQuery?
- How can I get the ID of an DOM element using jQuery?
- How to remove all the attributes of an HTML element using jQuery?
- How to replace a DOM element with the specified HTML or DOM elements using jQuery?
- How can I remove all elements except the first one using jQuery?
- How to remove all child nodes from a parent using jQuery?
- How can I bind all events on a DOM element using jQuery?
- How to remove all child nodes from a parent node using jQuery?
- How to remove all style attributes using jQuery?
- How to remove all CSS classes using jQuery?
- How to remove all CSS classes using jQuery?
- Remove next element using jQuery?
- How to insert an element into DOM using jQuery?
- How to select a single element which matches the given ID using jQuery?

Advertisements