Hi is there a javascript for this?
For example when I click on accounts it will lead me to the next page - account page. And when I click on email it will leads me to the email list page.
Hi kate,
You can use if statement here or select statement, the example below is if statement:
code
//this is just a hint:
if(dropdown == 'account'){
navigateTo ('AccountPage');
}else{
navigateTo ('EmailPage');
}
/code
GoodLuck,
She
thanks for the help:)