top of page
bottom of page
import wixWindow from 'wix-window'; $w.onReady(function () { $w('#botaoPagamento').onClick(() => { const cidade = $w('#inputCidade').value.trim().toLowerCase(); if (cidade !== "londrina") { wixWindow.openLightbox("Atendemos somente Londrina"); return; } // segue normalmente para checkout }); });