-
-
Save jsiesquen/8a2056e5469be7c96e44886e8db22370 to your computer and use it in GitHub Desktop.
Examples of events in VTEX Checkout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
$('#shipping-data').on('enable.vtex', function(){ | |
console.log('Shipping Data just opened.'); | |
}); | |
$(window).on('orderFormUpdated.vtex', function(ev, orderForm) { | |
console.log('Order Form updated.'); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment