Where you specify “state”, is that the name of the state on the multistate box?
So if my states are all labeled 01, 02, 03, etc then the code should be
import {session} from 'wix-storage';
export function hou100dropdown_change(event) {
session.setItem("01", $w("#hou100dropdown").label);
let gotoUrl = $w("#hou100dropdown").value;
wixLocation.to(gotoUrl);
}
am I following you correctly? Thank you!