Skip to content

Instantly share code, notes, and snippets.

@AshikNesin
Created March 21, 2018 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AshikNesin/7bb87fa1c3d2416c6d21d58ca49dcca9 to your computer and use it in GitHub Desktop.
Save AshikNesin/7bb87fa1c3d2416c6d21d58ca49dcca9 to your computer and use it in GitHub Desktop.
Get URL of the selected file
$('#file-upload').change(function(e) {
const file = e.target.files[0]
console.log(URL.createObjectURL(file))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment