Skip to content

Commit 5a9b29b

Browse files
committed
History of events: Fix typo
Closes gh-539 Closes gh-548
1 parent 1f79d82 commit 5a9b29b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/events/history-of-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ $( "#list" ).delegate( "li", "click", function( event ) {
115115
### [.on()](http://api.jquery.com/on/)
116116
First introduced in jQuery v1.7
117117

118-
The `on.()` method gives us a semantic approach for creating directly bound events as well as delegated events. It eliminates the need to use the deprecated `.bind()`, `.live()`, and `.delegate()` methods, providing a single API for creating events.
118+
The `.on()` method gives us a semantic approach for creating directly bound events as well as delegated events. It eliminates the need to use the deprecated `.bind()`, `.live()`, and `.delegate()` methods, providing a single API for creating events.
119119

120120
```
121121
$( "#list" ).on( "click", "li", function( event ) {

0 commit comments

Comments
 (0)