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.

Say I have this URL:

http://www.domain.com/subpage/?somsearch#somehash?

Is there a standard way to get the following result, without hash and search:

http://www.domain.com/subpage/

This is how I do it now:

var windowLocation = window.location;
alert(windowLocation.protocol + '//' + windowLocation.hostname + windowLocation.pathname);
share|improve this question

1 Answer

up vote 1 down vote accepted

Thanks to Bergi, this is pretty simple:

http://jsfiddle.net/8Vr7n/3/

var url = "http://google.com/?search=bob#asdf";

var shorterUrl = url.split("#")[0].split("?")[0];

alert(shorterUrl);
share|improve this answer
This one won't remove hashes from URIs without a search part. – Bergi Feb 9 '12 at 2:26
@Bergi Ok I changed the fiddle – Mikey G Feb 9 '12 at 2:31
uh, I just meant change it to url.split("?")[0].split("#")[0] which is much more elegant? – Bergi Feb 9 '12 at 2:35
haha i see, but i think you mean url.split("#")[0].split("?")[0]? – Mikey G Feb 9 '12 at 2:36
Thanks Mikey, would you say this gives better performance than the example I gave? – Hakan Feb 9 '12 at 2:36
show 4 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.