Skip to content

Instantly share code, notes, and snippets.

@jsstoni
Last active February 4, 2022 18:01
Show Gist options
  • Save jsstoni/0f4bd2ed6d0ed77e47d7c05757334844 to your computer and use it in GitHub Desktop.
Save jsstoni/0f4bd2ed6d0ed77e47d7c05757334844 to your computer and use it in GitHub Desktop.
// Image guardada: localStorage.image;
// crear un evento onchange al tipo file del formulario o cuando hagas tu submit ejecutar lo siguiente
var file = fileInput.files[0];
var reader = new FileReader();
reader.onload = function(e) {
localStorage.imagen = reader.result;
}
reader.readAsDataURL(file);
var img = new Image();
img.src = localStorage.imagen;
document.getElementById("dondevaimagen").innerHTML = img;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment