I'm afraid it might be impossible but is there a way to change the hash value of a URL without leaving an entry in the browser's history and without reloading? Or do the equivalent?

As far as specifics go, I was developing some basic hash navigation along the lines of:

//hash nav -- works with js-tabs
var getHash = window.location.hash;
var hashPref = "tab-";
function useHash(newHash) {
    //set js-tab according to hash
    newHash = newHash.replace('#'+hashPref, '');
    $("#tabs li a[href='"+ newHash +"']").click();
}
function setHash(newHash) {
    //set hash according to js-tab
    window.location.hash = hashPref + newHash;

    //THIS IS WHERE I would like to REPLACE the location.hash
    //without a history entry

}
    // ... a lot of irrelavent tabs js and then....

    //make tabs work
    $("#tabs.js-tabs a").live("click", function() {
        var showMe = $(this).attr("href");
        $(showMe).show();
        setHash(showMe);
        return false;
    });
    //hash nav on ready .. if hash exists, execute
    if ( getHash ){
        useHash(getHash);
    }

Using jQuery, obviously. The idea is that in this specific instance 1) making the user go back over every tab change could effectively 'break the back button' by piling up needless references, and 2) not retaining which tab they're currently on if they hit refresh is an annoyance.

link|improve this question

Why do you want to change hash if you don't want to keep history track? :| – Ionut Staicu Feb 22 '10 at 6:29
Because on refresh it would be best to present the user with the tab they were on, but since they may be flipping back and forth between tabs, it would glut their history with entries unnecessarily, making the back button actually less useful. This is just an example, though--it could be for any time you need to save a temporary state but don't want to rely on cookies or fill the user's temp file with them. When you refresh, the js content is as you left it--you haven't left the page, and it's not a jump-to point or a psuedo-page, so the history entry can only interfere with standard nav. – D_N Feb 22 '10 at 11:16
Perhaps I'm wrong on that, but that is as it appears. – D_N Feb 22 '10 at 11:17
And I'm willing to use something besides hash--just the only thing I could think of besides cookies. – D_N Feb 22 '10 at 11:18
Checkout my answer below, I've updated it. – UberNeet Feb 22 '10 at 21:44
feedback

2 Answers

up vote 0 down vote accepted

(Editing this because the answer below is actually correct, but new visitors may mistakenly believe this is the correct answer (I know I did))

(PLEASE LOOK AT THE ANSWER BELOW!)

I too think it is impossible (at this time). But why do you need to change the hash value if you are not going to use it?

I believe the main reason why we use the hash value as programmers is to let the user bookmark our pages, or to save a state in the browser history. If you don't want to do any of this, then just save the state in a variable, and work from there.

I think that the reason to use a hash is to work with a value that is out of our control. If you don't need it, then it probably means you have everything under your control, so just store the state in a variable and work with it. (I like repeating myself)

I hope this helps you out. Maybe there's an easier solution to your problem.

UPDATE: How about this:

  1. Setup a first hash, and make sure it gets saved in the browser history.
  2. When a new tab gets selected, do window.history.back(1), that will make the history go back from your first init hash.
  3. Now you set the new hash, therefore the tabbing will only make one entry in the history.

You'll probably have to use some flags, to know if the current entry can be "deleted" by going back, or if you just skip the first step. And to make sure, that your loading method for the "hash" doesn't execute, when you force the history.back.

link|improve this answer
It's very possible there's something basic I'm missing (exhaustion's a nice excuse, I'll go with that) but are you saying I can set a variable that will retain its changed value on reload? Besides with a cookie? (Cookies seem overkill, somehow..) Maybe that's what wasn't clear. I will be using the hash value--particularly on reload. Thanks for responding! – D_N Feb 21 '10 at 7:55
To clarify my clarification: if the user hits reload. That's what the hash is for. I'm still trying to avoid reload in their normal use (changing/clicking tabs). – D_N Feb 21 '10 at 7:58
Ok, so you will be using some values for info after reloading. Well unfortunately, the hash value will get picked by some browser's history. Sorry to say this, but from my exp, cookies are your best bet. If you want something that the browser history doesn't detect, but to retain after reload, unfortunately, cookies. If the user was clicking a link, then you could setup the link to be a query (?mystate=greatness), even though it doesn't need to be ajax, you could save info for the javascript to read when initializing the request. – UberNeet Feb 21 '10 at 8:05
Yes, the hash is for saving the user's info after hitting reload, but the problem for you situation, is that some browsers will save those changes in the history, that's just the way they work... :( – UberNeet Feb 21 '10 at 9:22
Yep, think you're right. Ah well. (Would love to be proven wrong by some other method or something.) – D_N Feb 22 '10 at 11:18
show 3 more comments
feedback
location.replace("#hash_value_here"); 

The above seems to do what you're after.

link|improve this answer
This is it. And if you have uri segments, location.replace(window.location + "#hash") will preserve them. – tedders Jan 17 at 16:00
2  
Seconding this method, much cleaner, wish it was marked as the correct answer. – joeellis Mar 2 at 16:45
I love this method – mrjrdnthms May 8 at 16:33
feedback

Your Answer

 
or
required, but never shown

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