Back to Tutorial Paste Your Code here! <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").dblclick(function(){ $(this).hide(); }); }); </script> </head> <body> <p>double-click on Experts PHP</p> <p>Click On Experts PHP!</p> <p>Click me too!</p> </body> </html> Output