Your cartChoosing a selection results in a full page refresh.
function createEcomSendMainStyleEle() {
const ele = document.createElement("link")
ele.rel = "stylesheet"
ele.href = 'https://cdn.shopify.com/extensions/9c6fa68f-d1f3-46e7-864b-0d452121dbd4/ecomsend-popups-35/assets/style.css'
ele.dataset.ecomsendTag = "load-alternate-css"
return ele
}
if (window.EcomSendApps?.enableAlternateCSSLoading ?? false) {
document.head.appendChild(createEcomSendMainStyleEle())
}
function createEcomSendMainJSEle() {
const ele = document.createElement("script")
ele.defer = true
ele.id = "ecomsend-main-js"
ele.src = 'https://cdn.shopify.com/extensions/9c6fa68f-d1f3-46e7-864b-0d452121dbd4/ecomsend-popups-35/assets/ecomsend.js'
if (null === document.getElementById(ele.id)) {
document.head.appendChild(ele)
}
}