Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 267473
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T23:33:24+00:00 2026-05-11T23:33:24+00:00

I’m currently implementing a JavaScript library that keeps track of the history of changes

  • 0

I’m currently implementing a JavaScript library that keeps track of the history of changes to the hash part in the address bar. The idea is that you can keep a state in the hash part, and then use the back button to go back to the previous state.

In most of the recent browsers, this is automatic and you only have to poll the location.hash property for changes (In IE8 you don’t even have to do that; you simply attach a function to the onhashchange event.)

What I’m wondering is, what different methods are there to keep track of the history? I’ve implemented functionality that has been tested to work in Internet Explorer 6/7/8, Firefox and Chrome, but what about other browsers? Here’s the ways I currently keep the history:

Edit: See my answer below instead for a walk-through of the various browsers.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T23:33:24+00:00Added an answer on May 11, 2026 at 11:33 pm

    First of all, thanks to you guys who answered! =)

    I’ve now done a lot more research and I believe I’m satisfied with my implementation. Here are the results of my research.

    First of all, my finished Hash library. It’s a stand-alone library with no dependencies. It has two functions: Hash.init(callback, iframe) and Hash.go(newHash). The callback function is called whenever the hash changes with the new hash as its first argument, and as its second argument a flag indicating whether the callback is called due to initial state (true) or an actual change to the hash (false).

    Hash.js (MIT license)

    I also made a jQuery plugin for making it easier to use. Adds a global hashchange event as well. See example in source code for how to use it.

    jquery.hash.js (MIT license)

    To see them in use, go to my JavaScript “realm” page:

    Blixt’s JavaScript realm

    Internet Explorer 8

    Smooooth cruisin’! Just smack on one o’ them onhashchange events to the window object (using attachEvent) and get the location.hash value in the event handler.

    It doesn’t matter if the user clicks a link with a hash, or if you set the hash programmatically; history is kept perfectly.

    Chrome, Firefox, Safari 3+, Opera 8+

    Smooth cruisin’! Just poll for changes to the location.hash property using setInterval and a function.

    History works perfectly. For Opera, I set history.navigationMode to 'compatible'. To be honest, I’m not sure what it does, I did it on recommendation from a comment in the YUI code.

    Note: Opera needs some additional testing, but it has worked fine for me so far.

    Surprise quirk bonus! (Can it be?!) It turns out that Firefox (only confirmed in 3.5+) decodes the location.hash property, so this can trigger a hashchange event twice (first for the encoded version then for the unencoded version.) There is a new version of my Hash.js library that takes this into account by using the location.href property instead (changes provided by Aaron Ogle.)

    Internet Explorer 6, 7

    Now it gets nastier. The navigation history in older Internet Explorer versions ignore hash changes. To work around this, the commonly accepted solution is to create an iframe and set its content to the new hash. This creates a new entry in the navigation history. When the user goes back, this changes the content of the iframe to its previous content. By detecting the change of content, you can get it and set it as the active hash.

    Checking for changes to the location.hash property is still needed to manual changes to the current address. Beware of the quirks I’ve mentioned below, though.

    While this solution seems to be the best one out there, it’s still not perfect in Internet Explorer 6, which is a bit quirky about the back/forward buttons. Internet Explorer 7 works fine, though.

    Surprise quirk bonus #1! In Internet Explorer 6, whenever there’s a question mark in the hash, this gets extracted and put in the location.search property! It is removed from the location.hash property. If there is a real query string, however, location.search will contain that one instead, and you’ll only be able to get the whole true hash by parsing the location.href property.

    Surprise quirk bonus #2! If the location.search property is set, any subsequent # characters will be removed from the location.href (and location.hash) property. In Internet Explorer 6 this means that whenever there’s a question mark in the path or the hash, you’ll experience this quirk. In Internet Explorer 7, this quirk only occurs when there’s a question mark in the path. Don’t you just love the consistency in Internet Explorer?

    Surprise quirk bonus #3! If another element on the page has the same id as the value of a hash, that hash will totally mess up the history. So rule of thumb is to avoid hashes with the same id as any elements on the page. If the hashes are generated dynamically and may collide with ids, consider using a prefix/suffix.

    Other browsers

    Unless you’ve got an out-of-the-ordinary user base, you won’t need to support more browsers. The browsers not listed above are in the <1% usage category.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a bunch of posts stored in text files formatted in yaml/textile (from
We're building an app, our first using Rails 3, and we're having to build
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I am trying to loop through a bunch of documents I have to put
I'm making a simple page using Google Maps API 3. My first. One marker
I have some data like this: 1 2 3 4 5 9 2 6

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.