Javascript examples for jQuery Method and Property:empty
The empty() method removes all child nodes and content from the selected elements.
The following code shows how to Remove the content of all <div> elements:
<!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(){ $("div").empty(); });// ww w . j a v a2 s . c o m }); </script> </head> <body> <div style="height:100px;background-color:yellow"> This is some text <p>This is a paragraph inside the div.</p> </div> <p>This is a paragraph outside the div.</p> <button>Remove content of the div element</button> </body> </html>