Skip to content Skip to sidebar Skip to footer

How To Redirect By Using Jquery?

I have on log in page if user enters both user name and password same then i have to forward user to next page how is it possible. how do i do this?

Solution 1:

window.location = '/next-page';

Plain JS...

Solution 2:

It will be better if you can do this in the server side language itself. You will be validating the user credentials using a server side language and if that evaluates to success then you can redirect the page to a new one from there itself. No need to do this in javascript.

Solution 3:

have some server side authentication in PHP and if that succeeds, use client side stuff (jquery or JS) to redirect

Solution 4:

Try this:

window.location.replace("http://stackoverflow.com");

Post a Comment for "How To Redirect By Using Jquery?"