Back to Tutorial Paste Your Code here! <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>Click Me And I will Hide!</p> <p>Click Me And I will Hide!</p> <p>Click Me And I will Hide!</p> </body> </html> Output