on click function in jquery code example

Example 1: jquery click function

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

Example 2: on click jquery

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

Example 3: class onclick jqery

$(document).on('click','.addproduct', function(){

    //your code here

 });

Example 4: jquery onclick function

$( "#other" ).click(function() {
  $( "#target" ).click();
});

Example 5: document on click jquery

$(document).on("click","#test-element",function() {});

Example 6: jquery bind click

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