Skip to content

Instantly share code, notes, and snippets.

@Aufree
Created October 10, 2014 13:07
Show Gist options
  • Save Aufree/161669cd3bf36b8f24a8 to your computer and use it in GitHub Desktop.
Save Aufree/161669cd3bf36b8f24a8 to your computer and use it in GitHub Desktop.
Preview image before uploading in jquery
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function(e) {
$('#previewHolder').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#filePhoto").change(function() {
readURL(this);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment