Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Web Technology by (47.6k points)

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

1 Answer

0 votes
by (106k points)

To get current URL with jQuery and its path, you can use the below-mentioned code:-

var pathname = window.location.pathname; 

var url = window.location.href;

var origin = window.location.origin; 

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Aug 10, 2019 in Web Technology by Sammy (47.6k points)

Browse Categories

...