The different kinds of action that web page respond that are called events and most of the times we have seen that some website having different kinds of response and that all kind of response comes because of JQuery.
The events has categorized according to their situation.1 Mouse Events
2 Keyboard events
3 Form events
4 Document events
$("p").click();Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>help4code disappear</p> <p>one more times</p> </body> </html>