Replies: 0
Hi, I am trying to show the loading animation on my add_to_cart_button and single_add_to_cart_button, but it only works on the first one. I have 2 functions made with jQuery:
$( '.add_to_cart_button' ).on( 'click', function(){
$(this).addClass('loading');
});
$( '.button.single_add_to_cart_button' ).on( 'click', function(){
$(this).addClass('loading');
});
It only works for the add_to_cart_button.
For the single_add_to_cart_button the loading class is being added, but nothing is shown.
Please help!