jquery on click class code example
Example 1: jquery click function
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Example 2: jquery click event
$('#selector').on('click',function(){
//Your code here
});
Example 3: class onclick jqery
$(document).on('click','.addproduct', function(){
//your code here
});
Example 4: css click event jquery
$('h1').click(function () {
$(this).css('color', 'blue')
});
Example 5: jquery onclick function
$( "#other" ).click(function() {
$( "#target" ).click();
});
Example 6: jquery is triggered on every element with class name
$(".yourButtonClass").on('click', function(event){
event.stopPropagation();
event.stopImmediatePropagation();
//(... rest of your JS code)
});