tomhoppe.com

Racing, Web Development, Photography, and Beer...Stuff that matters.

Grab filename from window location

Here is a snippet I use to grab the filename from the full window location of page.

var filename = location.pathname.substr(location.pathname.lastIndexOf("/")+1,location.pathname.length);

Leave a Reply