vote up 13 vote down star
5

I am using jQuery. I need to redirect the user from page1 to page2. Does anyone have any suggestions on how I would accomplish this?

flag

78% accept rate

7 Answers

vote up 31 vote down check

Not jQuery specific, but window.location.replace(...) will accomplish what you want. It is better than using window.location = if you don't want the originating page to show up in the session history, meaning the user won't get stuck in a never-ending back-button fiasco.

window.location.replace("http://stackoverflow.com");
link|flag
vote up 3 vote down

Simply do :

var url = "http://www.stackoverflow.com";    
$(location).attr('href',url);
link|flag
vote up 0 vote down

var url = 'asdf.html'; window.location.href = url; hf

link|flag
vote up 0 vote down

easy

$(document).ready(function(){ $("#header").click(function(){ top.location="index.php"}); });

link|flag
vote up -5 vote down

I write some code lie this,

<form id="abc">
  <input type="text" id="txt" />
</form>

and now I want to redirect like this,

var temp = $("#txt").val();
url = "http:abc.com/" + temp;
window.location.replace(url);
or
window.location(url);

and it still let me have url = http://abc.com please give me a hand I need that! Thank a lot of viewing my trouble!

link|flag
This doesn't appear to be an answer to the original poster's question. – ahsteele Dec 15 at 21:45
vote up 1 vote down

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|flag
vote up 26 vote down

You don't need jQuery to do just that:

window.location = "http://www.page-2.com";
link|flag
4  
note that you don't need jquery – Matt Briggs Feb 2 at 12:57
5  
and this is why i tell people to learn javascript before learning a library. – geowa4 Feb 2 at 14:22
@George IV, I totally agree with that. – Ionut G. Stan Feb 2 at 14:59
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 at 18:49
8  
You mean to tell me there's an underlying technology to jQuery this whole time? Are you ****ing with me? – TheTXI Jun 26 at 17:02

Your Answer

Get an OpenID
or

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