How can I redirect the user from one page to another using jQuery?

link|improve this question

78% accept rate
feedback

9 Answers

up vote 1475 down vote accepted

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 fiasco. If you want to simulate someone clicking on a link, use location.href. If you want to simulate an HTTP redirect, use location.replace.

For example:

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
link|improve this answer
283  
+1 for noting the difference between location.href and location.replace. – Steven Benitez Nov 8 '10 at 3:16
15  
Very handy! I never knew that about window.location.replace(). Thank you very much! – emurano Jun 4 '11 at 9:34
11  
This answer gave you 5000 rep!? Let that be 5010. :) – Lazlo Bonin Jul 28 '11 at 2:30
7  
Wow! This answer have you 5880 reputation?! Let that be 5890 ;) But how do simple answers like this get you so much rep? – Nathan Sep 5 '11 at 20:52
11  
Because they are perfectly useful, and given at the right time. True, others have given more dedicated and time-consuming answers to other questions and received less rep, but, well... this guy did it first! :P On a very popular question. – Vael Victus Sep 26 '11 at 1:38
show 6 more comments
feedback

Simply do :

var url = "http://stackoverflow.com";    
$(location).attr('href',url);
link|improve this answer
3  
That's what I was looking for. Thanks. – willbeeler Jul 1 '10 at 14:32
72  
That's terrible. Seriously? Do it the normal JavaScript way. – palswim Aug 26 '10 at 16:59
98  
Terrible why? A guy asks for jQuery, he gets one. – Radek Apr 28 '11 at 10:21
8  
whilst the OP should be open to suggestions, his question was pretty straight forward, and deserves an answer. also keep in mind people hitting this question in fututre may actually want to know how to do it in jquery, for whatever crazy reason. i dont see harm in explaining both – AaronHS Oct 27 '11 at 3:09
1  
More importantly, is there a way to do this with jQuery that is absracted? This is just a wrapper for window.location.href = url; But if jQuery had some function that, if window.location.href = url; wasn't going to work in the current environment (browser, OS, etc.) jQuery core could compensate? – Chris Feb 29 at 16:03
show 2 more comments
feedback

You don't need jQuery to do just that:

window.location = "http://www.page-2.com";
link|improve this answer
9  
note that you don't need jquery – Matt Briggs Feb 2 '09 at 12:57
48  
and this is why i tell people to learn javascript before learning a library. – geowa4 Feb 2 '09 at 14:22
3  
@George IV, I totally agree with that. – IonuČ› G. Stan Feb 2 '09 at 14:59
10  
I somewhat agree with George, but actually since I've been learning jQuery it has actually helped me learn javascript, but it is important to know that jQuery is just that abstraction/tool that simplifies javascript for you. – Jon Erickson Feb 2 '09 at 18:49
110  
You mean to tell me there's an underlying technology to jQuery this whole time? Are you ****ing with me? – TheTXI Jun 26 '09 at 17:02
show 9 more comments
feedback

It would help if you were a little more descriptive in what you are trying to do. If you are trying to generate paged data, there are some options in how you do this. You can generate separate links for each page that you want to be able to get directly to.

<a href='/path-to-page?page=1' class='pager-link'>1</a>
<a href='/path-to-page?page=2' class='pager-link'>2</a>
<span class='pager-link current-page'>3</a>
...

Note that the current page in the example is handled differently in the code and with CSS.

If you want the paged data to be changed via AJAX, this is where jQuery would come in. What you would do is add a click handler to each of the anchor tags corresponding to a different page. This click handler would invoke some jQuery code that goes and fetches the next page via AJAX and updates the table with the new data. The example below assumes that you have a web service that returns the new page data.

$(document).ready( function() {
    $('a.pager-link').click( function() {
        var page = $(this).attr('href').split(/\?/)[1];
        $.ajax({
            type: 'POST',
            url: '/path-to-service',
            data: page,
            success: function(content) {
               $('#myTable').html(content);  // replace
            }
        });
        return false; // to stop link
    });
});
link|improve this answer
feedback

This works for every browser:

window.location.href = 'your_url';

Good luck!

link|improve this answer
feedback
$jq(window).attr("location","http://google.fr");

This version works well with jQuery 1.6.2.

link|improve this answer
feedback
var url = 'asdf.html';
window.location.href = url;
link|improve this answer
feedback

You can do that without jQuery as:

window.location = "http://yourdomain.com";

And if you want only jQuery then you can do it like :

$jq(window).attr("location","http://yourdomain.com");
link|improve this answer
feedback

I think it is elegant to build a form with GET method and then submit it, and it will work in every browser and every version.

< form id="getter" method="GET" action="URL" >
< input type="hidden" name="variable" value="value" />
< /form >

and you go:

$( '#getter' ).submit();
link|improve this answer
That is absolutely overkill. – Rafael Almeida May 12 at 21:05
feedback

protected by Community Mar 27 at 17:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.