jquery button class click code example

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

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

Example 2: on click jquery

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

Example 3: class onclick jqery

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

Example 4: jquery bind click

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