jquery onclick event by class code example
Example 1: class onclick jqery
$(document).on('click','.addproduct', function(){
//your code here
});
Example 2: on click jquery
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Example 3: jquery bind click
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});
Example 4: class onclick jqery
$(".addproduct").unbind().click(function(){
//do something
});