Skip to content

Instantly share code, notes, and snippets.

@marcbacon
Created April 25, 2016 18:25
Show Gist options
  • Save marcbacon/39a7dcbe8e800aa986e1f9c98909a66d to your computer and use it in GitHub Desktop.
Save marcbacon/39a7dcbe8e800aa986e1f9c98909a66d to your computer and use it in GitHub Desktop.
Test for an anchored hash and save the hash to a variable.
if(window.location.hash) {
var hash = window.location.hash.substring(1); //Puts hash in variable, and removes the # character
alert (hash);
// hash found
} else {
// No hash found
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment