How can i navigate to a new screen via java script alert
Posted: Wed Apr 04, 2012 11:35 pm
I cannot seem to navigate to a screen after user clicks ok
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/
I cannot seem to navigate to a screen after user clicks ok
sorry got it working using this
var r=confirm("Warning! GPS is required");
if (r==true)
{
Tiggr.navigateTo('Geolocation');
}
else
{
//do nothing
}