Skip to content

Instantly share code, notes, and snippets.

@ginsengs
Created March 7, 2017 21:43
Show Gist options
  • Save ginsengs/9095f4a34fa53ae705fc116aed5c0490 to your computer and use it in GitHub Desktop.
Save ginsengs/9095f4a34fa53ae705fc116aed5c0490 to your computer and use it in GitHub Desktop.
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
console.log('test2')
reader.onload = function (e) {
$('#image-view').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