javascript get current url path code example
Example 1: javascript get current url
var currentUrl = window.location.href;
Example 2: javascript get url path
window.location.pathname
Example 3: js get path from url
var reg = /.+?\:\/\/.+?(\/.+?)(?:#|\?|$)/;
var pathname = reg.exec( 'http://www.somedomain.com/account/search?filter=a#top' )[1];