Events
subify:sdkLoaded
window.addEventListener("subify:sdkLoaded",()=>{
//sdk is loaded and you can access to 'window.subifySdk'
})subify:variantChange
window.addEventListener("subify:variantChange", (event) => {
//you have access targetProductId and selectedVariantId in event.detail
const { targetProductId, selectedVariantId } = event.detail;
});
subify:sellingPlanChange
Last updated