rad - How to open another page in HTML5 Builder Server Mobile Application -


we still rookie developers in html5 builder, creating server mobile application.

we know how open page (page2.php) using javascript.

basically, user fill in form, when 'submit' button clicked, few basic checks done in javascript (like check if fields filled in) , if validation successful, app needs load next page.

the following code have been tried:

window.location = "page2.php";

window.open('page2.php','_parent');

both of these work fine when app running in browser on pc, not work on deployed app on android, end product. tested on more 1 device different versions of android, same result.

any appreciated, thank you.

if using client-side ajax navigation, enabled default in mobile pages, can change page this:

$.mobile.changepage("targetpage.php"); 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -