$("#txt_image").on('change',function(){
console.log('on change');
if (this.files && this.files[0] ) {
const reader = new FileReader();
reader.onload = function(e){
$("#book-image-preview").attr('src',e.target.result);
}
reader.readAsDataURL(this.files[0]);
}
});