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.

i have var uri = window.location.href; that provides http://mysite.com/something#hash

what's the best and easiest way to get the entire path without the #hash?

uri = http://mysite.com/something#hash nohash = http://mysite.com/something

I tried using location.origin+location.pathname which doesn't work in every browser. I tried using location.protocol+'//'+location.host+location.pathname which looks like kind of a crappy solution to me.

What is the best and easiest way to do so? maybe I query for location.hash and try to substr() this from the uri?

any ideas?

share|improve this question
BTW, if your doing this just to link to a #section on the same page, just set the link href to #section. You don't need to get the page's base url then concatenate the hash on the end. – Web_Designer Feb 25 at 6:59

5 Answers

up vote 8 down vote accepted

location.protocol+'//'+location.host+location.pathname is the correct syntax if you do not care about port number or querystring

If you do care:

https://developer.mozilla.org/en/DOM/window.location

location.protocol+'//'+location.host+location.pathname+(location.search?location.search:"")

or

location.protocol+'//'+location.hostname+(location.port?":"+location.port:"")+location.pathname+(location.search?location.search:"")

You can also just do a location.href.replace(location.hash,"")

share|improve this answer
You lost the query string (if there was one) there – Quentin Apr 28 '11 at 12:03
@Dorward - fixed. – mplungjan Apr 28 '11 at 12:56
Seems like location.host is including port. – Borgenk Nov 23 '11 at 13:33
@Borg thanks - fixed – mplungjan Nov 23 '11 at 18:19
location.href.replace(location.hash,"")
share|improve this answer
does not work in firefox. – Zo72 Oct 20 '11 at 9:39
does not work in firefox – Zo72 Oct 20 '11 at 9:39
It works in my copy of Firefox. – Quentin Oct 20 '11 at 11:31
(location+'').href.replace(location.hash,"") works in firefox (location is not a regular string) – Taha Jahangir Oct 8 '12 at 11:03
But care that location.hash is '' when url is somehting.com/# – Taha Jahangir Oct 8 '12 at 11:05
var uri = window.location.href.split("#")[0];

// Returns http://mysite.com/something

var hash = window.location.href.split("#")[1];

// Returns #hash
share|improve this answer

Shorter solutions:

  • without query string and hash location.href.split(location.search||location.hash||/[?#]/)[0]

  • only without hash location.href.split(location.hash||"#")[0]

(I usually use the first one)

share|improve this answer

Is the universal way also the smaller?

location.href.split(/\?|#/)[0]

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.