Does onHashChange or hashChange work in Safari? I tested it with Safari 4.0.4 on Windows 7 and it doesn't work for me.

If it doesn't work, is there any solution to track if the hash has changed?

link|improve this question

stackoverflow.com/questions/680785/… there you'll find your solution. Answer to question, does it work in Safari? - No. – psycketom Oct 27 '10 at 2:05
Pff :| Fcking Safari! – CIRK Oct 27 '10 at 2:11
Oh, please. Try "F*cking IE" on for size – Matt Ball Oct 27 '10 at 2:22
feedback

2 Answers

In our app we poll to check for changes:

$b.hashCheck = setInterval(
    function(){
        if ( window.location.hash !== $b.C.current_hash){
            $b.C.current_hash = window.location.hash;

            //call the on change action here

        }
    },$b.C.hashCheckDelay
);

$b is the global object we use for our namespace and hashCheckDelay was empirically set at 120ms.
While it looks a bit sad to do this kind of process, there isn't any performance issue on any browser we tested.

link|improve this answer
thanks for your answer, this could be a solution to track if the hash has changed in the browsers who don't support onHashChange however this is not a good solution because with a lots of queries requires too much performance. – CIRK Oct 30 '10 at 22:02
I use it in our app, but a single function checks and dispatch the message to the relevant object. Without problems of performance. – Mic Oct 31 '10 at 10:41
feedback
up vote 1 down vote accepted

In Safari 4.0.4 doesn't works yet but in the latest one works fine. And I didn't find any acceptable solutions to track if the hash has changed for those Browsers who don't support onHashChange.

link|improve this answer
if ("onhashchange" in window) { alert("The browser supports the hashchange event!"); } – JoJo Feb 12 '11 at 18:40
feedback

Your Answer

 
or
required, but never shown

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