search

Home  >  Q&A  >  body text

Navigate from one page to another: Jump between pages in Cordova iOS

I'm very new to iOS Cordova right now and I'm struggling to navigate from one page to another. I just need to know how a page works where there is a button called click and if I click on that button it should go to the next page. It is as simple as we create navigation view controller in iOS.

P粉066224086P粉066224086495 days ago561

reply all(1)I'll reply

  • P粉364642019

    P粉3646420192023-09-15 11:11:30

    <script type="text/javascript">
              document.getElementById("login").onclick = function () {
               window.location.href = "addProduct.html";
              };
            </script>

    This way you can navigate from one page to another.

    reply
    0
  • Cancelreply