Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a difficult problem. Already researched here on the site, and tried many solutions proposed, but none worked in Internet Expolorer 8 (is the version I have installed on my machine). Works fine in Chrome and Firefox. I have a website where the user needs to upload 10 photos. I need make the upload and display them in a div on the page, without flash and without reloading the page. I used the technique of set form target attribute , to do the post in a iframe, the iframe does the post, and when reloaded, it´s just an img tag with the image that was uploaded (I do it at server side script - PHP) In internet explorer the contents of iframe does not change, the post does not happen.

Someone miracle can help me? 've Researched a lot here in the forum, but most of these problems are with iframes dynamically generated by javascript, but in my case, the iframe is already in html

Here is my code:

//javascript

$(document).ready(function() {          
//this part works in every browser, is jut´s to triger click in input type file    
   $(".div_input_file").click(function(){               
        var rel = $(this).attr("rel");              
        $(".arq"+rel).trigger('click');             
    })
}); 

function loadPicture(number)
{               
    $(".remover_produto").remove();
    //just a gif animation until ends animation
    $("#image_load_"+number).attr("src","images/loading.gif");
    $("#image_load_"+number).css("width","172px");      
    $("#image_load_"+number).css("height","176px");     
    //when iframe load after post
    $("#upload_target_"+number).load(function() {
        //get image that was loaded in iframe after post
            var image = $("#upload_target_"+number).contents().find("img").attr("src");
        $("#div_input_file_"+number).html("<img src='"+image+"' alt=''  class='img_uploaded' />");
        $("#div_input_file_"+number).parent().append('<a class="remover_produto" rel="remover_'+number+'"');           
    });   

}   

    //html
    <iframe id="upload_target_1" class="upload_target" name="upload_target_1" src="upload.php"></iframe>
    <div id="div_input_file_1" class="div_input_file" rel="1">
        <img src="images/criar_anuncio/gallery_pic05.png" alt="" id="image_load_1" />
    </div>      
    <form action="/upload.php" id="form_upload_1" enctype="multipart/form-data" method="post" target="upload_target_1" onsubmit="loadPicture(1)">   
        <input name="arquivo" type="file" size="30" class="arquivo arq1" onchange="$('#form_upload_1').submit();"/>
        <input type="hidden" name="num_imagem" value="1" /> 
    </form> 
share|improve this question
Amongst other erroneous things, this line ("#div_input_file_"+number).parent().append('<a class="remover_produto" rel="remover_'+number+'"'); is incorrect syntatically. You'll notice that you do not close the <a> tag. – Ohgodwhy Jun 20 '12 at 20:21
in my code is correct closing tag, I shortened the function decreases, here to show only what is relevant. What else is wrong? – Bruno Jun 20 '12 at 20:38
you can use ajax instead of an iframe... – Dan Barzilay Jun 20 '12 at 22:12
I can´t use ajax, because I need to upload file. ajax don´t allows upload file – Bruno Jun 21 '12 at 14:18

1 Answer

Finally found the problem. these lines were causing the problem:

$(document).ready(function() {          
//this part works in every browser, is jut´s to triger click in input type file    
   $(".div_input_file").click(function(){               
        var rel = $(this).attr("rel");              
        $(".arq"+rel).trigger('click');             
    })
});

To style the input type file, I used the following technique: Clicking on a div, the triggering of the input file type that was hidden.

This action causes the bug in internet explorer. I put the normal input type file without styles so I can test, and could prove that it works well

Thanks to everyone who helped

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.