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 have the following code that allows me to select an image file and preview it, or delete it before processing the actual upload.

This is the HTML that I use:

<input type='file' onchange="readURL(this);"  />
<br/>
<span id="previewPane">
    <img class="img_prev" src="#" alt="your image" />
    <span class="x">[X]</span>
</span>

And this is the javascript that I use:

var blank="http://upload.wikimedia.org/wikipedia/commons/c/c0/Blank.gif";
function readURL(input) {

    if (input.files && input.files[0]) {
        var reader = new FileReader();

        reader.onload = function (e) {
            $('.img_prev')
            .attr('src', e.target.result)
            .height(200);
        };

        reader.readAsDataURL(input.files[0]);
    }
    else {
      var img = input.value;
        $('.img_prev').attr('src',img).height(200);
    }
    $(".x").show().css("margin-right","10px");
}

 function OnClientFileSelected(sender, args){
    var row = args.get_row();
    var fakeFileNameInput = sender._getChildFileNameInputField(row);
    var fakePathString = "fakepath";
    if (fakeFileNameInput.value.indexOf(fakePathString) != 0){
        var fakePathLength = fakePathString.length;
        fakeFileNameInput.value = fakeFileNameInput.value.replace(fakePathString,"[SelectionPath]");
    }
} 


$(document).ready(function() {
  $(".x").click(function() {
    $(".img_prev").attr("src",blank);
    $(".x").hide();  
  });
});

Here is an example in JsBin
This works OK even in IE8, but What I want is to be able to add multiple images and have the same functionality.
I mean, to use a single input type="file" and have several images in the preview area which can be individually deleted (or not).
Can anyone help me out with this?

share|improve this question
I'd recommend this plugin, rather than struggle to get something half as good... blueimp.github.com/jQuery-File-Upload – Archer Nov 7 '12 at 10:37
Thanks for the quick reply. I tried this plugin, but unfortunately the image preview doesn't work on IE8 or IE9, and I have to use a plugin that works on these versions of IE, even if I would gladly disregard any version of IE :( – inadcod Nov 7 '12 at 10:39
Strange - it works fine for me in IE8+. Ah well - sorry it didn't help. – Archer Nov 7 '12 at 10:44
Well the form works fine, the problem is that only the image thumbnail preview doesn't work, and that is exactly what I need to work :) – inadcod Nov 7 '12 at 10:49
That works fine for me - can't help I'm afraid :( – Archer Nov 7 '12 at 10:55

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.