Skip to content

Instantly share code, notes, and snippets.

@pixelmatrix
Created May 27, 2010 18:10
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 pixelmatrix/416137 to your computer and use it in GitHub Desktop.
Save pixelmatrix/416137 to your computer and use it in GitHub Desktop.
//reading
var hash = window.location.hash;
if(hash == '' || hash == "#ichi"){
//show ichi stuff
}else if(hash == "#ni"){
//show ni stuff
}else if(hash == "#san"){
//show san stuff
}
//setting
//call this each time you change the nav
window.location.hash = "#ni";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment