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:
| ||||
|
feedback
|
|
To get the path, you can use window.location.pathname:
| |||||||||||||||||||||
feedback
|
|
In pure jQuery style :
The location object has also other properties like host, hash, protocol, pathname, etc. | |||||||||||||||||||||
feedback
|
window.location is standard JavaScript and does not require jQuery. | |||
|
feedback
|
|
You'll want to use JavaScript's built-in | ||||
|
feedback
|
|
Just add this function in JavaScript, and it will return the absolute path of the current path.
I hope it works for you. | ||||
|
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 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. | ||||
|
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 | ||||
|
feedback
|
|
window.location will give you the current url and you can extract whatever you want from it.. | |||
|
feedback
|