document.addEventListener('mfs_init_etmc', function (e) {
console.log('-mfs_init_etmc Event Handler Called--', e.detail);
_etmc.push(["setOrgId", "7237979"]);
_etmc.push(["setUserInfo", e.detail.AccountId]);
_etmc.push(["trackPageView"]);
}, true);
document.addEventListener('mfs_add_to_cart', function (e) {
console.log('-mfs_add_to_cart Event Handler Called--', e.detail);
_etmc.push(["setOrgId", "7237979"]);
_etmc.push(["trackCart", { 'cart': e.detail }]);
}, true);
document.addEventListener('mfs_empty_cart', function (e) {
console.log('-mfs_empty_cart Event Handler Called--', e.detail);
_etmc.push(["setOrgId", "7237979"]);
_etmc.push(["trackCart", { "clear_cart": true } ]);
}, true);
Category