Hello Champs,
I am new for j qyery and just trying to inhance it through https://learn.jquery.com/about-jquery/how-jquery-works , written a jquery function that
$(document).ready(function () {
$("a").click(function (event) {
alert("Thanks For Visiting !");
});
});
Its working fine,But if i excluded event from function(event) and run the code then no change in result Then i want to know what is the use of event here.
Manav PandyaPosted Feb 4, 2018, 3:11 AM