Skip to content

Instantly share code, notes, and snippets.

@isaacrankin
Created February 11, 2015 23:25
Show Gist options
  • Save isaacrankin/bedf45b3be2ac6ac5348 to your computer and use it in GitHub Desktop.
Save isaacrankin/bedf45b3be2ac6ac5348 to your computer and use it in GitHub Desktop.
The simplest JS router
var base = '/';
switch (location.pathname){
case base + 'contact':
console.log('you are viewing the contact page');
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment