<input type="file" id="inputFile">
<div id="image_show" style='display:none'>
<img></img>
</div>
$(document).on('change', "#inputFile", function(){
ext = $(this).val().split('.').pop().toLowerCase();
if($.inArray(ext, ['gif', 'png', 'jpg', 'jpeg']) == -1) {
resetFormElement($(this));
window.alert('이미지 파일이 아닙니다! (gif, png, jpg, jpeg 만 업로드 가능)');
} else {
file = $('#inputFile').prop("files")[0];
blobURL = window.URL.createObjectURL(file);
$('#image_show img').attr('src', blobURL);
$('#image_show img').attr('width', 90);
$('#image_show img').attr('height', 70);
}
});