where do i put the eventClick jquery code example
Example 1: jquery click event
$('#selector').on('click',function(){
//Your code here
});
Example 2: on click jqueyr
//Click for event to trigger
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});