Skip to content

Instantly share code, notes, and snippets.

@cdmz
Created January 17, 2016 18:09
Show Gist options
  • Save cdmz/c877051308d4d64b4eb3 to your computer and use it in GitHub Desktop.
Save cdmz/c877051308d4d64b4eb3 to your computer and use it in GitHub Desktop.
get hash
function getHash(url){
if (typeof url != 'string'){
return null;
}
return url.replace(/^.*(#.*)$/, '$1');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment