Had to replace the front bumper skid plate. I smashed a dune the bumper held up great but the skid plate took the full impact. it did its job. thanks cageworks
Choosing a selection results in a full page refresh.
Opens in a new window.
(function() {
function triggerShopifyPriceUpdate() {
const form = document.querySelector('form[action="/cart/add"]');
if (!form) return;
// Trigger change on the variant ID input
const variantInput = form.querySelector('[name="id"]');
if (!variantInput) return;
variantInput.dispatchEvent(new Event('change', { bubbles: true }));
}
function hookEasify() {
document.addEventListener('click', function(e) {
if (e.target.closest('[class*="easify"]')) {
setTimeout(triggerShopifyPriceUpdate, 200);
}
});
}
window.addEventListener('load', function() {
hookEasify();
});
})();