Skip to content

Commit 0682cb6

Browse files
committed
events/event-helpers.md: after landing jquerygh-529 this page needed a few tweaks to the wording.
1 parent c98c4ed commit 0682cb6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

page/events/event-helpers.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"attribution": [ "jQuery Fundamentals" ]
66
}</script>
77

8-
jQuery offers two event-related helper functions that save you a few keystrokes.
8+
jQuery offers a few event-related helper functions that save you a few keystrokes. Here is an example of one, the `.hover()` function.
99

1010
### `.hover()`
1111

@@ -19,3 +19,5 @@ $( "#menu li" ).hover(function() {
1919
$( this ).toggleClass( "hover" );
2020
});
2121
```
22+
23+
You can find more helper functions on the [API site for Events](https://api.jquery.com/category/events/).

0 commit comments

Comments
 (0)