I created two dropdown lists with one storing a set list of member names and one that stores a set list of member phone numbers. I’m trying to have the values that users selected for each show up as text (displayed to all visitors of the website). I tried to use the “selected” property per the Wix API but get an error saying “selected does not exist on dropdown2”. Here is the code for this portion:
let w1name = $w(‘#dropdown2’).selected
$w(‘#text59’).text = w1name
let w1number = $w(“#dropdown1”).selected;
$w(‘#text60’).text = w1number
Any ideas? Thanks in advance!!