onclick Event jquery 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: on click jquery

$( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});

Example 4: set onclick jquery

$(elem).click(myFunc());

Example 5: onclick event in jquery ajac

$('a').click(function(){
$.ajax({
type: "POST",
url: "mysimplepage.php",
async: true,
data: { logDownload: true, file: $(this).attr("name") }
});
return false;
});

Example 6: onclick Event jquery

// Html

  
// Js  
function MyFunction(item) {
  var input = $(item);
  console.log(input);
}

Tags:

Misc Example