Skip to content

Instantly share code, notes, and snippets.

@malikkurosaki
Created February 6, 2018 02:12
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 malikkurosaki/b075e0ad6ad3649a4916ed28ea78a847 to your computer and use it in GitHub Desktop.
Save malikkurosaki/b075e0ad6ad3649a4916ed28ea78a847 to your computer and use it in GitHub Desktop.
this simple function how to show image before upload
function preimg(){
var fileimage = document.getElementById("fileimage");
var showimage = document.getElementById("showimage");
fileimage.addEventListener("change",function(){
showimage.src = window.URL.createObjectURL(this.files[0]);
});
}
preimg();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment