Skip to content

Instantly share code, notes, and snippets.

@scarstens
Created July 15, 2013 20:20
Show Gist options
  • Select an option

  • Save scarstens/6003089 to your computer and use it in GitHub Desktop.

Select an option

Save scarstens/6003089 to your computer and use it in GitHub Desktop.
javascript function that return the main URL
function get_base_website_url() {
if (!window.location.origin)
return window.location.origin = window.location.protocol+"//"+window.location.host;
else
return window.location.origin;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment