Skip to content

Instantly share code, notes, and snippets.

@fukata
Created September 12, 2011 11:02
Show Gist options
  • Save fukata/1211019 to your computer and use it in GitHub Desktop.
Save fukata/1211019 to your computer and use it in GitHub Desktop.
jsunit utility
function base_url() {
var url = window.location.href;
var idx = url.lastIndexOf('/');
if (idx > 0) {
url = url.substr(0, idx);
} else {
url = "";
}
return url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment