Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I have a JavaScript action that may have some effects on the current page but would also change the URL in the browser so if the user hits reload or bookmark the new URL is used?

It would also be nice if the back button would reload the original URL.

I am trying to record JavaScript state in the URL.

share|improve this question
1  
This would be so nice. Of course it would be limited to same-domain modifications. But some client-side control of the path (and not just hash) is a logical step now that page reloads are a kind of "last resort" for many apps. – harpo Mar 26 '10 at 17:25
1  
A "sort-of" good use of pushState: for(i=1;i<50;i++){var txt="..................................................";txt=txt.slice(0,i)+"HTM‌​L5"+txt.slice(i,txt.length);history.pushState({}, "html5", txt);} – Derek 朕會功夫 Mar 7 '12 at 3:34
example of this effect in action: dujour.com – Ben Aug 31 '12 at 17:26
1  
Example of this effect: facebook.com (When opening images in the lightbox) – prc322 Nov 7 '12 at 12:06

10 Answers

up vote 128 down vote accepted

If you want it to work in browsers that don't support history.pushState and history.popState yet, the "old" way is to set the fragment identifier, which won't cause a page reload.

The basic idea is to set the window.location.hash property to a value that contains whatever state information you need, then either use the window.onhashchange event, or for older browsers that don't support onhashchange (IE < 8, Firefox < 3.6), periodically check to see if the hash has changed (using setInterval for example) and update the page. You will also need to check the hash value on page load to set up the initial content.

If you're using jQuery there's a hashchange plugin that will use whichever method the browser supports. I'm sure there are plugins for other libraries as well.

One thing to be careful of is colliding with ids on the page, because the browser will scroll to any element with a matching id.

share|improve this answer
2  
Don't search engines ignore these internal links (hashes)? In my scenario I want spiders to pick up on these links too. – Drew Noakes May 10 '09 at 14:51
3  
@Drew, as far as I know, there's no way for search engines to treat a part of a page as a separate result. – Matthew Crumley May 11 '09 at 14:48
7  
There is now a proposal to make search engines see hashes: googlewebmastercentral.blogspot.com/2009/10/… – LKM Oct 8 '09 at 21:03
4  
Instead of using setInterval to inspect the document.location.hash one can use the hashchange event, as it's much more adopted. Check here for what browsers support each standard. My current approach is to use push/popState on browsers that support it. On the others I set the hash and only watch the hashchange in supporting browsers. This leaves IE<=7 without history support, but with usefull permalink. But who cares for IE<=7 history? – Iraê Feb 9 '11 at 22:25
2  
@gabeDel Yes, although I don't think Analytics records the hash, so it would have the same URL. A better way would be to manually call _trackPageview with the "real" URL of the new page. – Matthew Crumley Jul 14 '12 at 3:26
show 2 more comments

With HTML 5, use the history.pushState function. As an example:

<script type="text/javascript">
var stateObj = { foo: "bar" };
function change_my_url()
{
   history.pushState(stateObj, "page 2", "bar.html");
}
var link = node.getElementByID('click');
link.addEventListener('click', change_my_url, false);
</script>

and a href:

<a href="#" id='click'>Click to change url to bar.html</a>
share|improve this answer
2  
GREAT TIP ! works on chrome but not in FF" :/ – jujule Dec 9 '10 at 16:52
4  
Sample code is cut and pasted from developer.mozilla.org/en/DOM/Manipulating_the_browser_history . Which actually bothers explaining what foo and bar mean in this case. – nailer Feb 1 '11 at 11:45
1  
The foo and bar don't mean anything, it's an arbitrarily defined state object that you can get back later. – Paul Dixon Feb 1 '11 at 12:11
1  
@Paul: yep, the article above provides that info. – nailer Feb 1 '11 at 17:09
2  
AS of posting this comment it works on firefox chrome and safari. No luck with mobile safari on the ipad or iphone though :( – Sid Jun 4 '11 at 3:06
show 2 more comments

window.location.href contains the current URL. You can read from it, you can append to it, and you can replace it, which may cause a page reload.

If, as it sounds like, you want to record javascript state in the URL so it can be bookmarked, without reloading the page, append it to the current URL after a # and have a piece of javascript triggered by the onload event parse the current URL to see if it contains saved state.

If you use a ? instead of a #, you will force a reload of the page, but since you will parse the saved state on load this may not actually be a problem; and this will make the forward and back buttons work correctly as well.

share|improve this answer
1  
recording javascript state in the URL is exactly what I'm trying to do – Steven Noble Sep 25 '08 at 23:39

I would strongly suspect this is not possible, because it would be an incredible security problem if it were. For example, I could make a page which looked like a bank login page, and make the the URL in the address bar look just like the real bank!

Perhaps if you explain why you want to do this, folks might be able to suggest alternative approaches...

[Edit in 2011: Since I wrote this answer in 2008, more info has come to light regarding an HTML5 technique that allows the URL to be modified as long as it is from the same origin]

share|improve this answer
5  
Not so much of an issue if non-reload changes were restricted to the path, query string, and fragment—i.e. not the authority (domain and such). – Ollie Saunders Jun 16 '10 at 14:16
2  
youtube.com/user/SilkyDKwan#p/u/2/gTfqaGYVfMg is a example that it is possible, try switching videos :) – Spidfire Aug 19 '10 at 20:54
You can only change the location.hash (everything after the #), as Matthew Chumley notes in the accepted answer. – Paul Dixon Aug 19 '10 at 22:41
Do you use Facebook? Facebook changes the URL without reloading, using history.pushState(). – Derek 朕會功夫 Mar 7 '12 at 3:20

Browser security settings prevent people from modifying the displayed url directly. You could imagine the phishing vulnerabilities that would cause.

Only reliable way to change the url without changing pages is to use an internal link or hash. e.g.: http://site.com/page.html becomes http://site.com/page.html#item1 . This technique is often used in hijax(AJAX + preserve history).

When doing this I'll often just use links for the actions with the hash as the href, then add click events with jquery that use the requested hash to determine and delegate the action.

I hope that sets you on the right path.

share|improve this answer
Sorry but your answer is not true. Yes you can change the URL. – Derek 朕會功夫 Mar 7 '12 at 3:22
1  
Yes you can use the html5 history api but it's not cross-browser, though you can use a poly-fill that will fallback to hash urls. – Jethro Larson Mar 27 '12 at 23:07

There is a Yahoo YUI component (Browser History Manager) which can handle this: http://developer.yahoo.com/yui/history/

share|improve this answer

Facebook's photo gallery does this using a #hash in the URL. Here are some example URLs:

Before clicking 'next':

/photo.php?fbid=496429237507&set=a.218088072507.133423.681812507&pid=5887027&id=681812507

After clicking 'next':

/photo.php?fbid=496429237507&set=a.218088072507.133423.681812507&pid=5887027&id=681812507#!/photo.php?fbid=496435457507&set=a.218088072507.133423.681812507&pid=5887085&id=681812507

Note the hash-bang (#!) immediately followed by the new URL.

share|improve this answer

There's a jquery plugin http://www.asual.com/jquery/address/

I think this is what you need.

share|improve this answer

I was wondering if it will posible as long as the parent path in the page is same, only something new is appended to it.

So like let's say the user is at the page: http://domain.com/site/page.html Then the browser can let me do location.append = new.html and the page becomes: http://domain.com/site/page.htmlnew.html and the browser does not change it.

Or just allow the person to change get parameter, so let's location.get = me=1&page=1.

So original page becomes http://domain.com/site/page.html?me=1&page=1 and it does not refresh.

The problem with # is that the data is not cached (at least I don't think so) when hash is changed. So it is like each time a new page is being loaded, whereas back- and forward buttons in a non-Ajax page are able to cache data and do not spend time on re-loading the data.

From what I saw, the Yahoo history thing already loads all of the data at once. It does not seem to be doing any Ajax requests. So when a div is used to handle different method overtime, that data is not stored for each history state.

share|improve this answer

There is location.hash='text' in http://probablyinteractive.com/url-hunter

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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