I am experiencing some issues binding to the hashchange event in Internet Explorer 7. All other versions of Internet Explorer - ie. 8 & 9 work without issue.

My code is:

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

When the hash of the url changes in Firefox, IE8, IE9 I get the alert box, but in IE7, nothing happens.

Anyone experience this before?

link|improve this question

75% accept rate
3  
Internet Explorer is not a valid browser... – genesis Jul 26 '11 at 16:52
feedback

1 Answer

up vote 3 down vote accepted

Pretty sure IE6 and IE7 don't support it natively. Did you try using Ben Alman's jquery BBQ script which fixes this?

link|improve this answer
IE8 was the first IE browser to support it natively. Beware, however, that IE8 in Compatibility Mode (e.g., acting as IE7) will claim to support it, but it does not, as Ben Alman points out: benalman.com/projects/jquery-hashchange-plugin – David Lantner Feb 7 at 19:45
feedback

Your Answer

 
or
required, but never shown

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