I have a dropdown selection with static pages that is currently working fine with below code
import wixLocation from ‘wix-location’;
$w.onReady( function () {
$w(“#selectschool1”).options = [
{“label”: “Narbita Nursing College”, “value”: “https://www.narhbita.com.gh/College/admissions.html”},
{“label”: “enrollghana”, “value”: “https://www.enrollghana.com/headerbanner”},
];
});
export function selectschool1_change_1(event) {
let gotourl = $w(‘#selectschool1’).value;
}
I have created a dynamic page and I need help in redirecting my dropdown to the specific dynamic pages. the Dynamic page is linked to a dataset.
Any help will be much appreciated.