Skip to content

Instantly share code, notes, and snippets.

@Gusase
Created February 25, 2024 22:57
Show Gist options
  • Save Gusase/456a59c8ab21ed628e0b0533eb55aa52 to your computer and use it in GitHub Desktop.
Save Gusase/456a59c8ab21ed628e0b0533eb55aa52 to your computer and use it in GitHub Desktop.
function showPreview(event){
if(event.target.files.length > 0){
var src = URL.createObjectURL(event.target.files[0]);
var preview = document.getElementById("file-ip-1-preview");
preview.src = src;
preview.style.display = "block";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment