How can I write the JavaScript callback code that will be executed on any changes in the URL anchor?
For example from http://example.com#a to http://example.com#b
|
How can I write the JavaScript callback code that will be executed on any changes in the URL anchor? For example from http://example.com#a to http://example.com#b |
||||
|
|
|
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:
Google Chrome 5, Safari 5, Opera 10.60, Firefox 3.6 and Internet Explorer 8 all support the
and putting it together:
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). |
||||
|
|
From what I see in other SO questions, the only workable cross-browser solution is a timer. Check out this question for example. |
|||
|
|
|
My solution (for Struts2) |
|||
|
|
|
|
|||
|
|
|
(Just for the record.) The YUI3 "hashchange" synthetic event does more or less the same thing as the accepted answer
|
|||
|
|
|
You can get more info from this
|
|||
|
|