Skip to content

Instantly share code, notes, and snippets.

@hugodias
Created August 8, 2012 13:37
Show Gist options
  • Save hugodias/3295080 to your computer and use it in GitHub Desktop.
Save hugodias/3295080 to your computer and use it in GitHub Desktop.
Get page HASH with Javascript
function getHash() {
var hash = window.location.hash;
return hash.substring(1); // remove #
}
function getLinkTarget(link) {
return link.href.substring(link.href.indexOf('#')+1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment