Skip to content

Instantly share code, notes, and snippets.

@madeinnordeste
Last active August 29, 2015 14:00
Show Gist options
  • Save madeinnordeste/e7259ccfd488b26ed10d to your computer and use it in GitHub Desktop.
Save madeinnordeste/e7259ccfd488b26ed10d to your computer and use it in GitHub Desktop.
Javascript - Base URL
function get_settings() {
var doc_location = document.location.href;
var url_strip = new RegExp("http:\/\/.*\/");
var base_url = url_strip.exec(doc_location);
var settings = { "base_url" : base_url }
return settings;
}
settings = get_settings();
alert(settings.base_url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment