Is it possible to preview image (on upload) before saving across all the browsers. I have implemented this way for Firefox:
document.getElementById("preview-photo").src = what.files[0].getAsDataURL();
this works fine, and, for IE
document.getElementById("preview-photo").src = what.value;
this docent work and same case with other browsers like Chrome and Safari. Currently I can see preview only in Firefox, other browsers not showing preview.
Please, advise me how to work on this.
Thanks