jquery element on click code example

Example 1: jquery click function

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});

Example 2: jquery click event

$('#selector').on('click',function(){
    //Your code here
});

Example 3: jquery on click function

//1st way
$(".searchCategory").click(function () {
  //your code here
});

//2nd way
$(".searchCategory").on( "click",getCategory);	// getCategory is a function but don't need the pharenthesis
//if you write getCategory() instead of getCategory when getCategory is a function with no pharamenters it might not work

Example 4: jquery bind click

$( "#foo" ).bind( "click", function() {
  alert( "User clicked on 'foo.'" );
});