jquery find by class click event code example
Example 1: class onclick jqery
$(".addproduct").unbind().click(function(){
//do something
});
Example 2: jquery bind click
$( "#foo" ).bind( "click", function() {
alert( "User clicked on 'foo.'" );
});