Another thing I am little confused about is the difference distinguishing between an "event" and an "event handler" in jquery. For example in the code below
I am assuming that the ".click(function( event )" is the event and the "alert( "Hello." ) handler?
$( "#helloBtn" ).click(function( event ) {
alert( "Hello." );
});
Thanks for your help in advance...I'm a little bit new to this and just trying to understand they fundamentals..