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