diff --git a/page/events/history-of-events.md b/page/events/history-of-events.md index 4a5d443c..b66981e9 100644 --- a/page/events/history-of-events.md +++ b/page/events/history-of-events.md @@ -115,7 +115,7 @@ $( "#list" ).delegate( "li", "click", function( event ) { ### [.on()](http://api.jquery.com/on/) First introduced in jQuery v1.7 -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. +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. ``` $( "#list" ).on( "click", "li", function( event ) {