jquery class on click code example

Example 1: on click jquery

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

Example 2: class onclick jqery

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

    //your code here

 });

Example 3: jquery is triggered on every element with class name

$(".yourButtonClass").on('click', function(event){
    event.stopPropagation();
    event.stopImmediatePropagation();
    //(... rest of your JS code)
});

Example 4: on click jquery

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

Example 5: class onclick jqery

$(".addproduct").unbind().click(function(){
   //do something 
});

Tags:

Html Example