Defining custom events
The events that get triggered naturally by the DOM implementations of browsers are crucial to any interactive web application. However, we aren't limited to this set of events in our jQuery code. We can also add our own custom events. We saw this briefly in Chapter 8, Developing Plugins, when we saw how jQuery UI widgets trigger events, but here we will investigate how we can create and use custom events outside of plugin development.
Custom events must be triggered manually by our code. In a sense, they are like regular functions that we define, in that we can cause a block of code to be executed when we invoke it from another place in the script. The .on() call for a custom event behaves like a function definition, ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access