We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98c4ed commit 0682cb6Copy full SHA for 0682cb6
page/events/event-helpers.md
@@ -5,7 +5,7 @@
5
"attribution": [ "jQuery Fundamentals" ]
6
}</script>
7
8
-jQuery offers two event-related helper functions that save you a few keystrokes.
+jQuery offers a few event-related helper functions that save you a few keystrokes. Here is an example of one, the `.hover()` function.
9
10
### `.hover()`
11
@@ -19,3 +19,5 @@ $( "#menu li" ).hover(function() {
19
$( this ).toggleClass( "hover" );
20
});
21
```
22
+
23
+You can find more helper functions on the [API site for Events](https://api.jquery.com/category/events/).
0 commit comments