jQuery empty Method
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $( "#emptyExample" ).on( "click", function(event) { $("#emptyMe").empty(); }); }); </script> <style> div{ margin:10px; min-height:50px; min-width:100%; border:1px solid blue; float:left; } </style> </head> <body> <h4 ><a href="javascript:void(0);" id="emptyExample">Click to run .empty() Example </a></h4> <div id="emptyMe" style="background:yellow;border:1px solid green;padding:10px;" > <div > I Am child Div1.......... </div> </div> </body> </html>
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $( "#emptyExample" ).on( "click", function(event) { $("#emptyMe").empty(); }); }); </script> <style> div{ margin:10px; min-height:50px; min-width:100%; border:1px solid blue; float:left; } </style> </head> <body> <h4 ><a href="javascript:void(0);" id="emptyExample">Click to run .empty() Example </a></h4> <div id="emptyMe" style="background:yellow;border:1px solid green;padding:10px;" > <div > I Am child Div1.......... </div> </div> </body> </html>
Copyrights@tutorialsplane.com