HTML Link on drop down menus
How do I add links to a drop down menu?
I have three links in a drop down menu, how do I trigger them to become links to specific websites.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
How do I add links to a drop down menu?
I have three links in a drop down menu, how do I trigger them to become links to specific websites.
Hello!
Could you clarify what do you mean on drop down menu? Do you mean some component from set of components in Appery.io builder?
I am building an app for my web 187 class, and I incorporated the mobile select menu into it, and I was trying to find out exactly how to use it. I have three individual pages that I want to be able to view once the name of the particular page is selected from the menu. I want to be able to navigate to that page once it is selected from the menu.
Add code on value change event. In this code check Select value and do navigation where you need.
ok...thanks a lot!!
The mobile select menu will only navigate to one page, when it should navigate to other pages too when that particular page is selected from the menu.
Hello,
It will be possible, if add a JS handler on value change.
if the page name ( which is needed to navigate) stores in "value" in select component, then the code should be like this:
Appery.navigateTo($(this).val());