Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
what are the special signs in the if condition? – AMember Oct 25 '12 at 11:07
...you got FileReader to work in IE8!?!? caniuse.com/#search=FileReader – Lee Kowalkowski Oct 25 '12 at 11:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.