Reputation: 2961
Is there a javascript callback for the ajax action (when you change the shipping) on the woocommerce checkout? And how do you hook into that callback?
Upvotes: 6
Views: 9338
Reputation: 2961
jQuery( document ).on( 'updated_checkout', function() {
console.log( 'here goes a action' );
} );
Upvotes: 15