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 working on an uploadform that has both 'no refreshing page but ajax' and 'upload on selecting a file without submit button'. Both parts work on their own, but not if I combine them.

1) The ajax upload part, as based on http://ramui.com/articles/ajax-file-upload-using-iframe.html

This is the html form :

<div id="feedback"></div>
<iframe name="upload_iframe" src="" size="0" width="0" border="0" ></iframe>
<form method="post" enctype="multipart/form-data"  action="/handler.php"  target = "upload_iframe"   id="fotoupload" >
<input name="file" size="20" type="file"  > 
<input type="submit" name="submit" value="Upload" >
</form>

This is handler.php, wich works well

function upload_file($path) {
        if ($_FILES["file"]["name"]) {
             // process image here           
          $message='<div style="margin:5px; color:green;">File has been successfully uploaded.</div>';      
            return $message;
}
$response=upload_file('/uploads/');
echo '<script>parent.document.getElementById("feedback").innerHTML="'.addslashes($response).'";</script>';

2) This is a form that submits to itself when a file is selected, wich also works for me

<form method="post" enctype="multipart/form-data"  action="/index.php?action=upload"   

    name="uploadform">
    <input name="file" size="20" type="file" onChange="document.forms['uploadform'].submit();" > 
    </form>

But when I combine both, it doesnt work :

 <div id="feedback"></div>
    <iframe name="upload_iframe" src="" size="0" width="0" border="0" ></iframe>
    <form method="post" enctype="multipart/form-data"  action="/handler.php"  target = "upload_iframe"     name="uploadform" >
    <input name="file" size="20" type="file" onChange="document.forms['uploadform'].submit();" > 
    </form>

So, is this combination somehow possible ? Do I perhaps need to add something more in the onChange part to make sure the form is submitted to the iframe ? Or how can I make it work ?

share|improve this question

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.