All the different visitors' actions that a web page can respond to are called events.
The folowing are different type events:
$("p").on("click", function(){ $(this).hide(); });
$("p").on({ mouseenter: function(){ $(this).css("background-color", "lightgray"); }, mouseleave: function(){ $(this).css("background-color", "lightblue"); }, click: function(){ $(this).css("background-color", "yellow"); } }); $("input").blur(function(){ $(this).css("background-color", "#ffffff"); });
Total : 27273
Today :9
Today Visit Country :