Skip to content

Instantly share code, notes, and snippets.

@ThisIsntMyId
Created September 13, 2021 20:42
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 ThisIsntMyId/fac3477a8852a0f91669c2fb57df23ce to your computer and use it in GitHub Desktop.
Save ThisIsntMyId/fac3477a8852a0f91669c2fb57df23ce to your computer and use it in GitHub Desktop.
image preview on upload
<img id="blah" alt="your image" width="100" height="100" />
<input type="file"
onchange="document.getElementById('blah').src = window.URL.createObjectURL(this.files[0])">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment