class on click jquery code example
Example 1: jquery click function
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Example 2: on click jquery
$( "#dataTable tbody tr" ).on( "click", function() {
console.log( $( this ).text() );
});
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 is triggered on every element with class name
$(".yourButtonClass").on('click', function(event){
event.stopPropagation();
event.stopImmediatePropagation();
//(... rest of your JS code)
});
Example 6: on click jqueyr
//Click for event to trigger
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});