vote up 3 vote down star
3

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 doesnt 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.

any Ideas? Thanks :)

flag

5 Answers

vote up 0 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

Here's an implementation of meandmycode's suggestion.

link|flag
vote up 8 vote down

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.

link|flag
1  
IE8 does. More to come – Sergey Ilinsky May 30 at 15:50
The latest Firefox build (3.6 alpha) also now supports the native hash changed event: developer.mozilla.org/en/DOM/… It is certainly worth doing a check for this event, but note that IE8 will tell you the event exists when it is running in IE7 compat mode.. sadly the event doesn't fire.. you'll need to check for the event and that the browser doesn't appear to be IE7.. sigh (or attempt to trigger the event with IE's fireEvent method). – meandmycode Aug 18 at 13:50
vote up 2 vote down

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

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

link|flag

Your Answer

Get an OpenID
or

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