i'm using following code, whick works perfect in IE8 and lower version, chrome, firefox. But it fails to work in Safari and IE 9.
<script type="text/javascript">
function readURL0(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#Img0').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
</script>
<asp:FileUpload ID="fuFile0" runat="server" onChange="readURL0(this)" />
<img id="Img0" src="../images/myproject-thumb.jpg" alt="preview" width="70" height="70" />
Is there any alternate solution, or any other suggestion. thanks
