Wholesaling

function nextStep(currentStep) { document.querySelector(`#step-${currentStep}`).style.display = "none"; // Hide current step document.querySelector(`#step-${currentStep + 1}`).style.display = "block"; // Show next step }
Scroll to Top