Skip to content

Instantly share code, notes, and snippets.

@hclewk
Created December 31, 2016 18:10
Show Gist options
  • Save hclewk/4ecc20d7b35d57d54e5df19041e556f3 to your computer and use it in GitHub Desktop.
Save hclewk/4ecc20d7b35d57d54e5df19041e556f3 to your computer and use it in GitHub Desktop.
Get Filename from URL in JS
var getFileName = function (url) {
return url.replace(/\?.*$/, "").replace(/.*\//, "");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment