I am using:

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

to bind a function to the hash change event. This seems to work in IE8,firefox, and chrome but not in safari and I assume not in earlier version of IE. For these browsers, I want to disable my javascript code that uses the hash and hashchange event. Is there a way with jQuery that i can detect if the browser supports the hashchange event? Maybe something with jQuery.support.....

Thanks for the help.

link|improve this question
jQuery hashchange event - jQuery plugin works perfect, even in IE8. + it's very easy to use it :) – enloz Sep 16 '11 at 3:38
feedback

6 Answers

You can detect if the browser supports the event by:

if ("onhashchange" in window) {
  //...
}

See also:

link|improve this answer
Thanks for that and for the quick response. – Ian Herbert Jun 22 '10 at 5:30
5  
Note that IE8 running in IE7 compatibility mode reports true for 'onhashchange' in window, even though the event isn't supported -from jQuery Mobile – Vikas May 19 '11 at 6:16
feedback

There is a hashchange plug-in which wraps up the functionality and cross browser issues available here.

link|improve this answer
feedback

A different approach to your problem...

There are 3 ways to bind the hashchange event to a method:

<script>
    window.onhashchange = doThisWhenTheHashChanges;
</script>

Or

<script>
    window.addEventListener("hashchange", doThisWhenTheHashChanges, false);
</script>

Or

<body onhashchange="doThisWhenTheHashChanges();">

These all work with IE 9, FF 5, Safari 5, and Chrome 12 on Win 7.

link|improve this answer
feedback

I think Chris Coyier has solution for that hashing problem, have a look at his screencast:

Best Practices with Dynamic Content

link|improve this answer
Thank you, I will look into that. – Ian Herbert Jun 22 '10 at 5:29
feedback

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

    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);
    }
link|improve this answer
Isn't this too much for the browser to handle? to poll for a hash change every 100ms? – adardesign Jul 6 '11 at 17:53
your sample code made my IE8 alerting until i opened task manager and killed process :) – enloz Sep 16 '11 at 3:29
feedback

try Mozilla official site: https://developer.mozilla.org/en/DOM/window.onhashchange

cite as follow:

if ("onhashchange" in window) {
    alert("The browser supports the hashchange event!");
}

function locationHashChanged() {
    if (location.hash === "#somecoolfeature") {
        somecoolfeature();
    }
}

window.onhashchange = locationHashChanged;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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