Jquery Remove Element
Remove Element
Jquery have some predefined methods to remove elements or contents. It have following methods that are used to remove content;
- remove()
- empty()
remove() method
This method are used to removes the selected elements and its child elements. In below example remove both paragraph and div section.
Example of remove()
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#box").remove(); }); }); </script> </head> <body> <div id="box" style="height:100px;width:300px;border:1px solid black;background-color:cyan;"> <p>JQuey is simple and easy to learn.</p> <p>It is JavaScript Library.</p> </div> <br> <button>Remove div element</button> </body> </html>
Output
JQuey is simple and easy to learn
It is JavaScript Library.
empty() method
This method are used to removes the child elements of the selected elements. In below example only remove paragraph but not remove complete div section.
Example of empty()
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#box").empty(); }); }); </script> </head> <body> <div id="box" style="height:100px;width:300px;border:1px solid black;background-color:cyan;"> <p>JQuey is simple and easy to learn.</p> <p>It is JavaScript Library.</p> </div> <br> <button>Remove div element</button> </body> </html>
Output
JQuey is simple and easy to learn
It is JavaScript Library.
Google Advertisment