jQuery is not necessary, and window.location.replace(…) will best simulate an HTTP redirect.
It is better than using window.location.href =, because replace() does not put the originating page in the session history, meaning the user won’t get stuck in a never-ending back-button failure. If you want to simulate someone clicking on a link, use location.href. If you want to simulate an HTTP redirect, use location.replace.
<!DOCTYPE html> <html> <head> <script> // For not remembering session window.location.replace("http://ayunor.com"); // For remembering session, so that back button may be used window.location.href = "http://ayunor.com"; </script> </head> <body> redirect page in Java Script </body> </html>