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
|
I am using jQuery. I'd like to get the path of the current URL and assign it to a variable. Example URL:
|
||||
|
|
|
To get the path, you can use window.location.pathname:
|
|||||||||||||||||||||
|
|
In pure jQuery style :
The location object has also other properties like host, hash, protocol, pathname, etc. |
|||||||||||||||||||||
|
window.location is standard JavaScript and does not require jQuery. |
|||||
|
|
You'll want to use JavaScript's built-in |
||||
|
|
|
Just add this function in JavaScript, and it will return the absolute path of the current path.
I hope it works for you. |
||||
|
|
|
This is a more complicated issue than many may think. Several browsers support built-in JavaScript location objects and associated parameters/methods accessible through 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. |
||||
|
|
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 |
|||||||||
|
|
|||
|
|
|
You can log window.location and see all the options, for just the URL use:
for the whole path use:
there's also location.__
|
|||
|
|
|
window.location will give you the current url and you can extract whatever you want from it.. |
|||
|
|
|
If you want to get the path of root site,use this :
|
|||||
|
|
I have this to strip out the GET variables.
|
|||
|
|
|
To get the URL of the parent window from within an iframe:
NB: only works on same domain |
||||
|
|
|
|
|||
|
|
|
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/ |
|||
|
|
|
This will return absolute url of current page using JS/JQuery.
|
|||
|
|
|
If there is someone who wants url + hash tag can combine two functions
|
||||
|