Skip to content

Instantly share code, notes, and snippets.

@adamculpepper
Last active August 29, 2015 14:02
Show Gist options
  • Save adamculpepper/b63ca4b7188d4153ad9f to your computer and use it in GitHub Desktop.
Save adamculpepper/b63ca4b7188d4153ad9f to your computer and use it in GitHub Desktop.
var app.url = (location.href); //Cached for heavy general use
app.isOnPage = function(pageName) {
return app.url.split("?")[0].split("/").pop() == pageName;
}
//Usage
if (app.isOnPage("services")) {
alert("on services page");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment