javascriptweb-applicationsvs-web-application-project

How to go from one page to another page using javascript?


From an admin page if the user is valid then the browser should go to another page.

When a user enters his user name and password, then clicks the OK button then another page is displayed and the login page is automatically closed.

How can I do this with JavaScript?


Solution

  • To simply redirect a browser using javascript:

    window.location.href = "http://example.com/new_url";
    

    To redirect AND submit a form (i.e. login details), requires no javascript:

    <form action="/new_url" method="POST">
       <input name="username">
       <input type="password" name="password">
       <button type="submit">Submit</button>
    </form>