Get a product demo
Let's start with the basics:
0%
Back
Next
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
document.addEventListener('DOMContentLoaded', () => { const BACK_ONE_SELECTOR = '[mag-element="go-back-1"]'; const backOne = document.querySelector(BACK_ONE_SELECTOR); if (!backOne) return; backOne.addEventListener('click', function (e) { e.preventDefault(); if (window.history.length > 1) { window.history.back(); } else { const locale = window.location.pathname.includes('en-us') ? '/en-us' : '/'; window.location.href = locale; } }); });