top of page
bottom of page
Coats
$w.onReady(function () { // Event handler for the 'Next' button $w('#nextButton').onClick(() => { const selection1 = $w('#dropdown1').value; const selection2 = $w('#dropdown2').value; const selection3 = $w('#dropdown3').value; // Determine the page to navigate to based on dropdown selections let targetPage; if (selection1 === 'option1' && selection2 === 'optionA' && selection3 === 'optionX') { targetPage = '/page1'; } else if (selection1 === 'option2' && selection2 === 'optionB' && selection3 === 'optionY') { targetPage = '/page2'; } else { targetPage = '/defaultPage'; } // Navigate to the determined page wixLocation.to(targetPage); }); });