Skip to content

Instantly share code, notes, and snippets.

@fsubal
Created January 8, 2015 07:17
Show Gist options
  • Save fsubal/3fd7cdb41a2e7e144be1 to your computer and use it in GitHub Desktop.
Save fsubal/3fd7cdb41a2e7e144be1 to your computer and use it in GitHub Desktop.
Get the Name of the Page File
var url = location.href.split("/");
var last = (url[url.length-1])? url[url.length-1] : "index";
var fileName = last.split(".html")[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment