Skip to content

Instantly share code, notes, and snippets.

@raco
Created May 2, 2018 00:36
Show Gist options
  • Save raco/7ae19c1942e02ae88395cee59916129e to your computer and use it in GitHub Desktop.
Save raco/7ae19c1942e02ae88395cee59916129e to your computer and use it in GitHub Desktop.
Preview Image
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function(e) {
$('#preview').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#file").change(function() {
readURL(this);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment