Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created July 15, 2022 16:20
Show Gist options
  • Select an option

  • Save Octagon-simon/0d31574919e494cb23aca586051ff425 to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/0d31574919e494cb23aca586051ff425 to your computer and use it in GitHub Desktop.
//retrieve file input element
const fileInp = document.querySelector('#inp_file');
//retrieve file
const fileInpFiles = fileInp.files
//log result
console.log(fileInpFiles);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment