const stepperContent = `
`; const customStepper = document.querySelector('.custom-stepper'); function navigateToStep(step) { updateFormCookie(); var currentStep = window.location.pathname; var newStep = currentStep.replace(/\/(\d+)$/, `/${step}`); var queryString = window.location.search; var nextPage = window.location.origin + newStep + queryString; window.location.href = nextPage; }; if (customStepper) { customStepper.parentElement.insertAdjacentHTML('beforeend', stepperContent); var cookie = document.cookie.match(new RegExp('(^| )' + 'form' + '=([^;]+)')); if(cookie != null){ var cookieValue = cookie[2]; var dataArray = JSON.parse(decodeURIComponent(cookieValue)); for (let i = 0; i < dataArray.length; i++) { const element = document.querySelector(`.step${i + 1}`); if (element) { element.classList.add('active'); } }; } }