GDY
GDY

Reputation: 2961

Woocommerce checkout ajax callback

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

Answers (1)

GDY
GDY

Reputation: 2961

jQuery( document ).on( 'updated_checkout', function() {

    console.log( 'here goes a action' );

} );

Upvotes: 15

Related Questions