What does .on do in jquery? What's the use? Language Notes JavaScript
.on() is the event binding method provided by jQuery, which is used to bind one or more event handling functions on the specified DOM element. The syntax structure is as follows: $(selector).on(event, childSelector, data, handler); where event is one or more event types, such as "click", "mouseov...