Skip to main content

How can I make a redirect page in jQuery/JavaScript?


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



Source: Tips4allCCNA FINAL EXAM

Comments

  1. 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";

    ReplyDelete
  2. Simply do :

    var url = "http://stackoverflow.com";
    $(location).attr('href',url);

    ReplyDelete
  3. 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
    });
    });

    ReplyDelete
  4. This works for every browser:

    window.location.href = 'your_url';


    Good luck!

    ReplyDelete
  5. $jq(window).attr("location","http://google.fr");


    This version works well with jQuery 1.6.2.

    ReplyDelete
  6. var url = 'asdf.html';
    window.location.href = url;

    ReplyDelete
  7. 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");

    ReplyDelete
  8. 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();

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex