Skip to content

Instantly share code, notes, and snippets.

@crushcafeteria
Created October 15, 2017 19:27
Show Gist options
  • Save crushcafeteria/df3cc9556b37e329d568b13e541396a3 to your computer and use it in GitHub Desktop.
Save crushcafeteria/df3cc9556b37e329d568b13e541396a3 to your computer and use it in GitHub Desktop.
Snippet - Preview image in file upload field with HTML 5
// Preview image
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.propertyImagePreview').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment