Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Created October 8, 2014 13:40
Show Gist options
  • Save pixelchar/289a9ce60d3d077b7835 to your computer and use it in GitHub Desktop.
Save pixelchar/289a9ce60d3d077b7835 to your computer and use it in GitHub Desktop.
Show an image on the page after choosing it from the file browser - via http://jsbin.com/qaweka/2/edit
var input = $('input')[0],
img = $('img')[0];
$(input).on('change', function (e) {
img.src = URL.createObjectURL(input.files[0]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment