Created
May 27, 2010 18:10
-
-
Save pixelmatrix/416137 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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