Image

jQuery - Events in jQuery - Events in jQuery

Events in jQuery

bheading1" id="JQuery History"> Events in JQuery

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

click
dbclick


2 Keyboard events

Keypress
Keyup
Keydown


3 Form events

submit
change
focus
blur


4 Document events

load
resize
scroll
unload


Syntax
$("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>