Wednesday, 22 April 2015

Simple image preview for image file uploads

$(window).load(function(){
/* image preview */
$('#photo_image').change(function(){
var oFReader = new FileReader();
oFReader.readAsDataURL($('#photo_image')[0].files[0]);
oFReader.onload = function (oFREvent) {
$('#preview').html('<img src="'+oFREvent.target.result+'">');
$('#preview img').css({"max-width":"900px"});
};
});
});
view raw gistfile1.js hosted with ❤ by GitHub

No comments:

Post a Comment