Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created August 19, 2014 07:47
Show Gist options
  • Save ABooooo/b55139712696efd6b609 to your computer and use it in GitHub Desktop.
Save ABooooo/b55139712696efd6b609 to your computer and use it in GitHub Desktop.
Check URL and create an array
// check url
var url = window.location.pathname;
var output = url.split('/');
//alert (output[0]);
if (output[0] == "condition") {
// do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment