Skip to content

Instantly share code, notes, and snippets.

@codearachnid
Created April 24, 2014 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codearachnid/11263786 to your computer and use it in GitHub Desktop.
Save codearachnid/11263786 to your computer and use it in GitHub Desktop.
A quick way to get the local file's url (used on phonegap)
var tempElement = document.createElement("a");
tempElement.setAttribute("href", ".");
var deviceBaseURL = tempElement.href;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment