JavaScript Obtenha URL atual
var currentUrl = window.location.href;
Grepper
var currentUrl = window.location.href;
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"
var currentLocation = window.location;