CODE

import wixWindow from 'wix-window';
$w.onReady( () => {} );
export function button1_click(event) {NAVIGATION()}
function NAVIGATION (parameter) {
if ($w('#input1').value === "Oferta 01") {
$w('#TXToutput').text="Oferta-01 was chosen";
$w('#BOX1').style.backgroundColor="rgb(255,155,55)";
setTimeout(()=>{wixWindow.openLightbox("Lightbox1");},2500);
}
else if ($w('#input1').value === "Oferta 02") {
$w('#TXToutput').text="Oferta-02 was chosen";
$w('#BOX1').style.backgroundColor="rgb(55,155,255)";
}
else if ($w('#input1').value === "Oferta 03") {
$w('#TXToutput').text="Oferta-03 was chosen";
$w('#BOX1').style.backgroundColor="rgb(155,255,55)";
}
else {"! ! ! Wrong-Input ! ! !";}
}