vote up 9 vote down star
3

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.

EDIT: as moonshadow correctly assumes I am trying to record javascript state in the URL

flag

7 Answers

vote up 17 vote down check

Set the window.location.hash property to some value that ideally has some kind of meaning. Be careful of colliding with ids on the page though, because the browser will scroll to any element with a matching id.

link|flag
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 at 14:51
1  
@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 at 14:48
There is now a proposal to make search engines see hashes: googlewebmastercentral.blogspot.com/2009/10/… – LKM Oct 8 at 21:03
vote up 0 vote down

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 changes 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 refreshes.

The problem with # is that the data is not cached(atleast I dont think so) when hash is changed. So it is like each time a new page is being loaded, where as back and forward buttons in non-ajax page are able to cache data and does not spends 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 seems 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.

link|flag
vote up 1 vote down

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

link|flag
vote up 9 vote down

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.

link|flag
recording javascript state in the URL is exactly what I'm trying to do – Steven Noble Sep 25 '08 at 23:39
vote up 5 vote down

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.

link|flag
vote up 0 vote down

This simply isn't possible. If it were, scammers and hackers would be having even more of a field day, and browser manufacturers would be climbing over each other to fix it.

link|flag
vote up 8 vote down

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...

link|flag

Your Answer

Get an OpenID
or

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