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

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
share|improve this question

20 Answers

up vote 566 down vote accepted

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

var pathname = window.location.pathname;
share|improve this answer
37  
Properties of the location object: developer.mozilla.org/en/DOM/window.location – bentford May 6 '10 at 23:28
67  
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
112  
"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
32  
Why even wait for document.ready – Alexey Lebedev Feb 22 '11 at 9:37
7  
@Alexey: Agreed, jQuery + waiting for document.ready isn't needed for this example. Got stuck in the jQuery mindset of always waiting for document.ready to do anything. – Ryan Doherty Feb 22 '11 at 17:57
show 9 more comments

In pure jQuery style :

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

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

share|improve this answer
74  
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
11  
+1, for using jquery. – Tamil Vendhan Jun 24 '11 at 10:20
10  
+1 for answering the question as OP asked. – shmeeps Aug 1 '11 at 14:45
22  
Apparently, using $(location) in jQuery is unsupported and advised against: bugs.jquery.com/ticket/7858 – Peter Aug 24 '11 at 14:41
7  
@mc10: The "invalid" part applies to the request to support $(location); this should NOT be used. – Peter Dec 30 '11 at 10:31
show 4 more comments
$(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.

share|improve this answer
1  
I believe this will make sure to wait for all redirects to resolve. – Jake Sep 8 '12 at 4:32

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

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
Additionaly: bugs.jquery.com/ticket/8138. In jQuery 1.8.0 source there is comment: // #8138, IE may throw an exception when accessing // a field from window.location if document.domain has been set. – Jan Święcki Nov 30 '12 at 9:17

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

share|improve this answer
1  
If someone needs only hash tag than can call window.location.href – Amit Patel Feb 21 '11 at 6:47
1  
I think @AmitPatel means window.location.hash – memeLab Oct 30 '12 at 18:21

for host name only use

window.location.hostname
share|improve this answer
http://www.refulz.com:8082/index.php#tab2


Property    Result
-------------------------------------------
host        www.refulz.com:8082
hostname    www.refulz.com
port        8082
protocol    http
pathname    index.php
href        http://www.refulz.com:8082/index.php#tab2
hash        #tab2


var x = $(location).attr('<property>')
share|improve this answer

You can log window.location and see all the options, for just the URL use:

window.location.origin

for the whole path use:

window.location.href

there's also location.__

.host
.hostname
.protocol
.pathname
share|improve this answer

this also will work

var currentURL = window.location.href;
share|improve this answer

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

share|improve this answer

If you want to get the path of root site,use this :

$(location).attr('href').replace($(location).attr('pathname'),'');
share|improve this answer
also add .replace('#','') – Gian Oct 11 '12 at 9:40
wouldn't that be .replace('#.*', '')? Remove not just the hash mark but everything after it as well? – Jonas Kölker Dec 17 '12 at 9:30

I have this to strip out the GET variables.

var loc = window.location;
var currentURL = loc.protocol + '//' + loc.host + loc.pathname;
share|improve this answer
 var currenturl = jQuery(location).attr('href');
share|improve this answer

To get the URL of the parent window from within an iframe:

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

NB: only works on same domain

share|improve this answer

var path = location.pathname returns the path of the current URL in jQuery, no need window

share|improve this answer

The following are examples of useful code snippets that can be used – some of the examples use standard javascript functions and are not specific to jQuery:

see link

http://www.designchemical.com/blog/index.php/jquery/8-useful-jquery-snippets-for-urls-querystrings/

share|improve this answer

This will return absolute url of current page using JS/JQuery.

  • document.URL
  • $("*").context.baseURI
  • location.href
share|improve this answer

If there is someone who wants url + hash tag can combine two functions

var pathname = window.location.pathname + document.location.hash;
share|improve this answer
To clarify: you don't need to use jQuery at all, the javascript function above will return what the OP was asking for? – GHC May 17 at 6:08

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.