Navigation Between Pages

Linking between jQuery Mobile pages creates a transition animation between pages on compatible devices (e.g. iOS & Android). If running on a browserthe browser’s back button (which may be a hardware back button on some devices such as android) will go back to the first page.   Back Button In Header Use this in the […]

Read More

Redirecting

Redirect To A New Page <script type=”text/JavaScript”> window.location = “http://www.mydomain.com” </script>”; Redirect With POST Data Using A Hidden Form Include the hidden form with the values you want to send on the page: <!– ———————————————– –> <!– HIDDEN FORM AUTO SUBMITTED ON UPLOAD COMPLETION –> <!– ———————————————– –> <form id=”form_upload_complete” name=”form_upload_complete” method=”post” action=”http://www.mydomain.com/successful_upload.php”> <input type=”hidden” […]

Read More