How to make a jquery jump menu go to different pages based on selection. I have been working on this for awhile and I cannot make it work.
I'm trying to use some jquery jump menu code I found and cross it with the javascript API for going to a particular page but I can't make it work. Here is the code for the jump menu:
$('#url').change(function() {
var url = $("#url").val();
if(url !="")
{
$("#jump").attr("action", url);
$("#jump").submit();
}
});
Here is the code for the javascript API:
Appery.navigateTo('menuPage', {});