Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>jQuery hide this element</title> <script src="jquery-latest.min.js"></script> <script> $(document).ready(function() { $("button").click(function(){ $(this).hide(); }); }); </script> </head> <body> <button>Click here to hide this button</button> </body> </html>
  Preview Arrow