Skip to content

Instantly share code, notes, and snippets.

@jorgepinon
Last active August 29, 2015 14:15
Show Gist options
  • Save jorgepinon/fb90c20f1f0b097c13e7 to your computer and use it in GitHub Desktop.
Save jorgepinon/fb90c20f1f0b097c13e7 to your computer and use it in GitHub Desktop.
returns the first segment of the current url
function getFirstSegment() {
var path = window.location.pathname;
seg1 = path.split("/")[1];
return seg1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment