Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to automatically change the url example.com/4000/title-2/#!4000 to example.com/4000/title-2 without to refresh the page ? Basically to remove "/#!4000" from the URL. Note that is important to remove the "/" before the hashbang not just the hashbang .

share|improve this question
Automatically or programmatically? – Sergio Tulentsev Apr 21 '12 at 17:37
You want to change..? The href of a link element, or window.location? I'd suggest, if you want to change the URL in the browser's address-bar, that you look at url-rewriting, with whatever you've got running on your server (Apache?). – David Thomas Apr 21 '12 at 17:38

1 Answer

up vote 6 down vote accepted

dont know if it is enough for you and whether it works completely cross-browser... chrome accepts:

location.hash = "";

but this keeps the "#" in the address bar

in modern browsers that completely support the html5 history api you do:

window.history.replaceState('Object', 'Title', '/4000/title-2');

EDIT: this dies not change the history of the browser

EDIT 2: just found this stackoverflow resource

share|improve this answer
we need to remove # and also the "/" before it . – mihai Apr 21 '12 at 17:40
@mihai it is impossible without a page refresh. – sg3s Apr 21 '12 at 17:44
sg3s html5 makes it possible – Tobias Krogh Apr 21 '12 at 17:45
1  
MDN entry for browser history, and W3 entry for replaceState(). And +1 for awesome, I hadn't come across that before =) – David Thomas Apr 21 '12 at 17:49
history is awesome ! – mihai Apr 21 '12 at 17:58
show 3 more comments

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.