get url path javascript code example

Example 1: javascript get current url

var currentUrl = window.location.href;

Example 2: get site url javascript

document.URL
> "http://example.com/page1.html"

document.location.href
> "http://example.com/page1.html"

document.location.pathname
> "/page1.html"

document.location.origin
> "http://example.com"

Example 3: javascript get url path

window.location.pathname

Example 4: js get path from url

var reg = /.+?\:\/\/.+?(\/.+?)(?:#|\?|$)/;
var pathname = reg.exec( 'http://www.somedomain.com/account/search?filter=a#top' )[1];

Example 5: set get variable in url

examplepage.php?var1=value&var2=value