![]() |
VOOZH | about |
The jQueryon() is an inbuilt method that is used to attach one or more event handlers for the selected elements and child elements in the DOM tree. The DOM (Document Object Model) is a World Wide Web Consortium standard. This method defines accessing elements in the DOM tree.
Syntax:
$(selector).on(event, childSelector, data, function)
Parameter: It accepts some parameters which are specified below-
Return Value: This returns all the event handlers that are attached to the selected element.
Example 1: In the code below child specifier and data is not passed.
Output:
👁 ImageExample 2: In the below code data and message both are being passed to the function.
Output:
👁 Image