Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
12 lines (6 sloc) 321 Bytes

Get Current URL in Javascript

To get the current URL:

var url = window.location.href;

To get the current path:

var path = window.location.path;

More information about the location object and its properties can be found here.

Something went wrong with that request. Please try again.