Get current URL in JavaScript?
I am using jQuery. How do I get the path of the current URL and assign it to a variable?
Example URL:
http://localhost/menuname.de?foo=bar&number=0
Javascript
jQuery
url
- asked 9 years ago
- B Butts
2Answer
To get the path, you can use:
var pathname = window.location.pathname; // Returns path only
var url = window.location.href; // Returns full URL
- answered 8 years ago
- Sandy Hook
In pure jQuery style:
$(location).attr('href');
The location object also has other properties, like host, hash, protocol, and pathname.
- answered 8 years ago
- Gul Hafiz
Your Answer