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