Special Methods for Event jQuery Handlers

In addition to the bind/delegate/on methods, jQuery provides direct methods for handling events. The...

Trigger method in jQuery

The method trigger is used to call event handlers manually. For example, by calling the trigger meth...

delegate and on methods In jQuery

delegate method Earlier, I mentioned that the method bindonly adds event handlers to elements that a...

Event bubbling in jQuery

Let’s say we have the following document structure: Thus, we have a three-level structure: at ...

Event object in jQuery

The object Eventis passed to the event handler with a number of parameters related to the event. The...

Registering and deleting event handlers In jQuery

Events allow us to track the state of an element and process user input. Using standard JavaScript c...