Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Handle URL anchor change event in js

How can I write the Javascript callback code that will be executed on any changes in the URL fragment identifier (anchor)?

For example from http://example.com#a to http://example.com#b

like image 815
Bogdan Gusiev Avatar asked Jan 29 '10 12:01

Bogdan Gusiev


1 Answers

Google Custom Search Engines use a timer to check the hash against a previous value, whilst the child iframe on a seperate domain updates the parent's location hash to contain the size of the iframe document's body. When the timer catches the change, the parent can resize the iframe to match that of the body so that scrollbars aren't displayed.

Something like the following achieves the same:

var storedHash = window.location.hash; window.setInterval(function () {     if (window.location.hash != storedHash) {         storedHash = window.location.hash;         hashChanged(storedHash);     } }, 100); // Google uses 100ms intervals I think, might be lower 

Google Chrome 5, Safari 5, Opera 10.60, Firefox 3.6 and Internet Explorer 8 all support the hashchange event:

if ("onhashchange" in window) // does the browser support the hashchange event?     window.onhashchange = function () {         hashChanged(window.location.hash);     } 

and putting it together:

if ("onhashchange" in window) { // event supported?     window.onhashchange = function () {         hashChanged(window.location.hash);     } } else { // event not supported:     var storedHash = window.location.hash;     window.setInterval(function () {         if (window.location.hash != storedHash) {             storedHash = window.location.hash;             hashChanged(storedHash);         }     }, 100); } 

jQuery also has a plugin that will check for the hashchange event and provide its own if necessary - http://benalman.com/projects/jquery-hashchange-plugin/.

EDIT: Updated browser support (again).

like image 138
Andy E Avatar answered Oct 20 '22 07:10

Andy E