jQuery Mouse click event
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Executing a Function on Click Event in jQuery</title> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <style> p{/*w w w . j av a 2s . c o m*/ padding: 20px; font: 20px sans-serif; background: khaki; } </style> <script> $(document).ready(function(){ $("p").click(function(){ $(this).slideUp(); }); }); </script> </head> <body> <p>Click on me and I'll disappear.</p> <p>Click on me and I'll disappear.</p> <p>Click on me and I'll disappear.</p> </body> </html>