up vote 133 down vote favorite
44
share [g+] share [fb]

I am using jQuery. I'd like to get the path of the current URL and assign it to a variable.

Example URL:

    http://localhost/menuname.de?foo=bar&number=0"
link|improve this question

78% accept rate
feedback

9 Answers

up vote 201 down vote accepted

To get the path, you can use window.location.pathname:

$(document).ready(function() {
    var pathname = window.location.pathname;
});
link|improve this answer
14  
Properties of the location object: developer.mozilla.org/en/DOM/window.location – bentford May 6 '10 at 23:28
27  
Far out this used to be common knowledge, jQuery is slowly killing javascript. – Andrew Dunn Sep 23 '10 at 22:08
40  
Far from killing it, jQuery's given Javascript a new life. Do new C#/Java programmers understand pointers? No. Do they need to? Not really, newer abstractions are powerful enough for it not to matter.. – flesh Jan 11 '11 at 22:10
57  
"How do I XYZ in jQuery" and the answer being plain javascript is pretty common. You may know how to do something in plain javascript; however, due to browser inconsistencies you may prefer to do it the "jQuery" way. I remember pre-jQuery or framework I would first check browser and then do what I wanted a handful of ways. So is jQuery killing plain js... yes, thank god, but it is also making it usable. – Parris Jan 20 '11 at 21:14
11  
Why even wait for document.ready – Alexey Lebedev Feb 22 '11 at 9:37
show 5 more comments
feedback

In pure jQuery style :

$(location).attr('href');

The location object has also other properties like host, hash, protocol, pathname, etc.

link|improve this answer
25  
Highly unnecessary, though +1 for using jQuery to actually retrieve the value (And thus answering the question exactly as it was asked). – Ryan Tenney Sep 23 '10 at 22:04
5  
+1, for using jquery. – TamilVendhan Jun 24 '11 at 10:20
2  
+1 for answering the question as OP asked. – shmeeps Aug 1 '11 at 14:45
6  
Apparently, using $(location) in jQuery is unsupported and advised against: bugs.jquery.com/ticket/7858 – Peter Aug 24 '11 at 14:41
1  
@Peter Bug closed as invalid. – mc10 Dec 19 '11 at 19:40
show 2 more comments
feedback
$(document).ready(function() {
    // to show it in an alert window
    alert(window.location);

    // to store it in a variable
    var loc = window.location;
});

window.location is standard JavaScript and does not require jQuery.

link|improve this answer
feedback

You'll want to use JavaScript's built-in window.location object.

link|improve this answer
feedback

Just add this function in JavaScript, and it will return the absolute path of the current path.

function getAbsolutePath() {
    var loc = window.location;
    var pathName = loc.pathname.substring(0, loc.pathname.lastIndexOf('/') + 1);
    return loc.href.substring(0, loc.href.length - ((loc.pathname + loc.search + loc.hash).length - pathName.length));
}

I hope it works for you.

link|improve this answer
feedback

This is a more complicated issue than many may think. Several browsers support built-in JavaScript location objects and associated parameters/methods accessible through window.location or document.location. However, different flavors of Internet Explorer (6,7) don't support these methods in the same way, (window.location.href? window.location.replace() not supported) so you have to access them differently by writing conditional code all the time to hand-hold Internet Explorer.

So, if you have jQuery available and loaded, you might as well use jQuery (location), as the others mentioned because it resolves these issues. If however, you are doing-for an example-some client-side geolocation redirection via JavaScript (that is, using Google Maps API and location object methods), then you may not want to load the entire jQuery library and write your conditional code that checks every version of Internet Explorer/Firefox/etc.

Internet Explorer makes the front-end coding cat unhappy, but jQuery is a plate of milk.

link|improve this answer
feedback

If you need the hash parameters present in the URL, window.location.href may be a better choice.

window.location.pathname => /search

window.location.href => www.website.com/search#race_type=1

link|improve this answer
If someone needs only hash tag than can call window.location.href – Amit Patel Feb 21 '11 at 6:47
feedback

for host name only use

window.location.hostname
link|improve this answer
feedback

window.location will give you the current url and you can extract whatever you want from it..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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