JQUERY Reference: Events
Quick reference for Events.
JQUERY Reference — Events
Quick summary of Events with syntax and example.
Syntax
$(selector).on(event, handler)
Example
$(function(){
$("#btn").on("click", function(){
alert("Hello jQuery");
});
});