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

What is the correct way to pull out just the path from a URL using JavaScript?

Example:
I have URL
http://www.somedomain.com/account/search?filter=a#top
but I would just like to get this portion
/account/search

I am using jQuery if there is anything there that can be leveraged.

share|improve this question

3 Answers

up vote 36 down vote accepted

There is a property of the built-in window.location object that will provide that.

// If URL is http://www.somedomain.com/account/search?filter=a#top

window.location.pathname // /account/search

// For reference:

window.location.host     // www.somedomain.com (includes port if there is one)
window.location.hostname // www.somedomain.com
window.location.hash     // #top
window.location.href     // http://www.somedomain.com/account/search?filter=a#top
window.location.port     // (empty string)
window.location.protocol // http:
window.location.search   // ?filter=a
share|improve this answer
3  
nice reference too +1 – brun Aug 4 '11 at 16:34

If this is the current url use window.location.pathname otherwise use this regular expression:

var reg = /.+?\:\/\/.+?(\/.+?)(?:#|\?|$)/;
var pathname = reg.exec( 'http://www.somedomain.com/account/search?filter=a#top' )[1];
share|improve this answer
regexp. nice work +1 – brun Aug 4 '11 at 16:34
Good job on the alternative. +1 – NickC Aug 4 '11 at 16:34
Almost perfect -- but unlike window.location.pathname it does not include the drive letter in the pathname on Windows. – Theo Dec 30 '12 at 21:45
window.location.href.split('/');

Will give you an array containing all your url parts, qhich you can access like a normal array.

share|improve this answer
also handy technique to know +1 – brun Aug 4 '11 at 16:35

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.