class onclick jquery code example
Example 1: class onclick jqery
$(document).on('click','.addproduct', function(){
});
Example 2: jquery is triggered on every element with class name
$(".yourButtonClass").on('click', function(event){
event.stopPropagation();
event.stopImmediatePropagation();
});
Example 3: on click jquery
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Example 4: class onclick jqery
$(".addproduct").unbind().click(function(){
});
Example 5: jquery bind click
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});