Skip to content

Instantly share code, notes, and snippets.

@gurkanakdeniz
Created July 4, 2019 17:39
Show Gist options
  • Save gurkanakdeniz/b844b364587a8da5c9c87855cf153522 to your computer and use it in GitHub Desktop.
Save gurkanakdeniz/b844b364587a8da5c9c87855cf153522 to your computer and use it in GitHub Desktop.
safe window location javascript
function currentPath() {
var response =
window.location.protocol +
"//" +
window.location.hostname +
(window.location.port ? ":" + window.location.port : "");
return response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment