Answers for "get path javascript"

5

jquery get current url

var currentURL = $(location).attr('href'); //jQuery solution
var currentURL = window.location.href; // raw javascript
Posted by: Guest on July-23-2019
37

javascript get current url

var currentUrl = window.location.href;
Posted by: Guest on July-22-2019
7

javascript get url path

window.location.pathname
Posted by: Guest on June-06-2020
2

javascript get base url

console.log(window.location.origin);
Posted by: Guest on March-04-2020
0

js get path from url

var reg = /.+?\:\/\/.+?(\/.+?)(?:#|\?|$)/;
var pathname = reg.exec( 'http://www.somedomain.com/account/search?filter=a#top' )[1];
Posted by: Guest on April-29-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language