Back to Tutorial Paste Your Code here! <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#mousedown").mousedown(function(){ alert("Mouse down over mousedown!"); }); }); </script> </head> <body> <p id="mousedown">This is a paragraph.</p> </body> </html> Output