Skip to main content

On - window.location.hash - change?


I am using Ajax and hash for navigation. Is there a way to check if the window.location.hash changed like this?



http://example.com/blah #123 to http://example.com/blah #456



It works if I check it when the document loads. But if I have #hash based navigation it doesn't work when I press the back button on the browser (so I jump from blah#456 to blah#123). It shows inside the address box, but I can't catch it with JavaScript.


Source: Tips4allCCNA FINAL EXAM

Comments

  1. The only way to really do this (and is how the 'reallysimplehistory' does this), is by setting an interval that keeps checking the current hash, and comparing it against what it was before, we do this and let subscribers subscribe to a changed event that we fire if the hash changes.. its not perfect but browsers really don't support this event natively.



    Update to keep this answer fresh:

    If you are using jQuery (which today should be somewhat foundational for most) then a nice solution is to use the abstraction that jQuery gives you by using its events system to listen to hashchange events on the window object.

    $(window).bind('hashchange', function() {
    .. work ..
    });


    The nice thing here is you can write code that doesn't need to even worry about hashchange support, however you DO need to do some magic, in form of a somewhat lesser known jQuery feature jQuery special events.

    With this feature you essentially get to run some setup code for any event, the first time somebody attempts to use the event in any way (such as binding to the event).

    In this setup code you can check for native browser support and if the browser doesn't natively implement this, you can setup a single timer to poll for changes, and trigger the jQuery event.

    This completely unbinds your code from needing to understand this support problem, the implementation of a special event of this kind is trivial (to get a simple 98% working version), but why do that when somebody else has already.

    ReplyDelete
  2. As a side note, the current HTML5 draft specifies a hashchange event, which IE8 is the only browser to currently support.

    ReplyDelete
  3. Firefox has had an onhashchange event since 3.6. See window.onhashchange.

    ReplyDelete
  4. There are a lot of tricks to deal with History and window.location.hash in IE browsers:


    As original question said, if you go from page a.html#b to a.html#c, and then hit the back button, the browser doesn't know that page has changed. Let me say it with an example: window.location.href will be 'a.html#c', no matter if you are in a.html#b or a.html#c.
    Actually, a.html#b and a.html#c are stored in history only if elements '<a name="#b">' and '<a name="#c">' exists previously in the page.
    However, if you put an iframe inside a page, navigate from a.html#b to a.html#c in that iframe and then hit the back button, iframe.contentWindow.document.location.href changes as expected.
    If you use 'document.domain=something' in your code, then you can't access to iframe.contentWindow.document.open()' (and many History Managers does that)


    I know this isn't a real response, but maybe IE-History notes are useful to somebody.

    ReplyDelete
  5. Ben Alman has a great jQuery plugin for dealing with this: http://benalman.com/projects/jquery-hashchange-plugin/

    If you're not using jQuery it may be an interesting reference to dissect.

    ReplyDelete
  6. Note that in case of Internet Explorer 7 and Internet Explorer 9 the if statment will give true (for "onhashchange" in windows), but the window.onhashchange will never fire, so it's better to store hash and check it after every 100 millisecond whether it's changed or not for all versions of Internet Explorer.

    if (("onhashchange" in window) && !($.browser.msie)) {
    window.onhashchange = function () {
    alert(window.location.hash);
    }
    // Or $(window).bind( 'hashchange',function(e) {
    // alert(window.location.hash);
    // });
    }
    else {
    var prevHash = window.location.hash;
    window.setInterval(function () {
    if (window.location.hash != prevHash) {
    storedHash = window.location.hash;
    alert(window.location.hash);
    }
    }, 100);
    }

    ReplyDelete
  7. A decent implementation can be found at http://code.google.com/p/reallysimplehistory/.
    The only (but also) problem and bug it has is: in Internet Explorer modifying the location hash manually will reset the entire history stack (this is a browser issue and it cannot be solved).

    Note, Internet Explorer 8 does have support for the "hashchange" event, and since it is becoming part of HTML5 you may expect other browsers to catch up.

    ReplyDelete
  8. You could easily implement an observer (the "watch" method) on the "hash" property of "window.location" object.

    Firefox has its own implementation for watching changes of object, but if you use some other implementation (such as Watch for object properties changes in JavaScript) - for other browsers, that will do the trick.

    The code will look like this:

    window.location.watch(
    'hash',
    function(id,oldVal,newVal){
    console.log("the window's hash value has changed from "+oldval+" to "+newVal);
    }
    );


    Then you can test it:

    var myHashLink = "home";
    window.location = window.location + "#" + myHashLink;


    And of course that will trigger your observer function.

    ReplyDelete
  9. Here's an implementation of meandmycode's suggestion.

    ReplyDelete
  10. Another great implementation is jQuery History which will use the native onhashchange event if it is supported by the browser, if not it will use an iframe or interval appropriatly for the browser to ensure all the expected functionality is successfully emulated. It also provides a nice interface to bind to certain states.

    Another project worth noting as well is jQuery Ajaxy which is pretty much an extension for jQuery History to add ajax to the mix. As when you start using ajax with hashes it get's quite complicated!

    ReplyDelete
  11. var page_url = 'http://www.yoursite.com/'; // full path leading up to hash;
    var current_url_w_hash = page_url + window.location.hash; // now you might have something like: http://www.yoursite.com/#123

    function TrackHash() {
    if (document.location != page_url + current_url_w_hash) {
    window.location = document.location;
    }
    return false;
    }
    var RunTabs = setInterval('TrackHash()', 200);


    That's it... now, anytime you hit your back or forward buttons, the page will reload as per the new hash value.

    ReplyDelete
  12. I used a jQuery plugin, HUtil, and wrote a YUI History like interface on top of it.

    Check it out once. If you need help I can help.

    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