
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Remove All Child Nodes from a Parent Using jQuery
To remove all child nodes from a parent, use the empty() method. The empty() method removes all child nodes from the set of matched elements.
Example
You can try to run the following code to learn how to remove all child nodes from a parent −
<html> <head> <title>jQuery empty() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { $(this).empty(); }); }); </script> <style> .div { margin:10px; padding:12px; border:2px solid #666; width:60px; } </style> </head> <body> <p>Click on any square below to see the result:</p> <div class = "div" style = "background-color:yellow;">ONE</div> <div class = "div" style = "background-color:gray;">TWO</div> </body> </html>
Advertisements