I'm trying to make ajax file upload . I read that it is not possible to do that without using iframe .
I wrote :

<iframe id="uploadTrg" name="uploadTrg" height="0" width="0" frameborder="0" scrolling="yes"></iframe>
<form id="myForm" action="file-component" method="post" enctype="multipart/form-data"  target="uploadTrg">
File: <input type="file" name="file">
<input type="submit" value="Submit" id="submitBtn"/>
</form>

and using jquery form plugin :

$('#myForm').ajaxForm({
    dataType:  'json',
    success:   function(data){
        alert(data.toSource());
    }
});

The Result :

the file is uploaded successfully and I can see the uploaded file , but a dialog box appears :

alt text

since I send back a json result to display the file name + size etc ..

My Question : How can I use the iFrame to be able to make " ajax file upload".

Note:

  1. I don't prefer to use special plugin to upload file , if there is more appropriate/easier solutions.
  2. I use jsp/servlets as a server-side language .. but I think it does not make sense which language I use .

Thanks

link|improve this question

In your #1, are you referring to jQuery plugins, or you do you mean Flash/Silverlight? – Nick Craver May 26 '10 at 2:18
1  
I mean .. jQuery plugins. – BugKiller May 26 '10 at 3:16
feedback

2 Answers

up vote 8 down vote accepted

I will answer my question , I think I found the solution . after I have googled here and there ,I can now run my program.
these steps that I followed to achieve the goal :

  1. Make the attribute "target" of the form point to " iframe " .
  2. Use a normal HTML request ( not Asynchronous/Ajax request ) to submit the form.
  3. Because the target frame is iframe , the whole page will not be refreshed - just the iframe.
  4. Once iframe onload event happens (capture that event using Javascript) then do what you want, e.g. You can use some tricks to list recently uploaded files, their names ,sizes .. etc , and you can generate hidden inputs to hold the attachment IDs to be used when submitting the send-form (e.g, if you want to write an article ) .

The final code could be like this:

    <!-- Attach a file -->

    <iframe id="uploadTrg" name="uploadTrg" height="0" width="0" frameborder="0" scrolling="yes"></iframe>
    <form id="myForm" action="file-component" method="post" enctype="multipart/form-data"  target="uploadTrg">
        File: <input type="file" name="file">
        <input type="submit" value="Submit" id="submitBtn"/>
    </form>
    <div id="ajaxResultTest"></div>

    <!-- Sending Form -->
    <form id="sendForm">
        <input type="text" value ="title">
        <textarea id="bla">

        </textarea>     
        <input type="submit" value="Send the article" id="submitBtn"/>
    </form>

javascript :

$("iframe").load(function(){
    $.post('file-component?do=getLastFile',null,function(attachment){
       // add the last uploaded file , so the user can view the uploaded files
       $("#ajaxResultTest").append("<h4>" + attachment.name + "</h4>");

       // add the attachment id as hidden input , so you can attach the file with an article (example)
       $("#sendForm").append('<input type = "hidden" name="files" value='+attachment.id+'/>');
    },'json');
});
link|improve this answer
1  
+1 for finding the solution yourself. – Anurag May 26 '10 at 4:15
1  
The target attribute is deprecated (w3schools.com/TAGS/att_form_target.asp). I am beginning to believe that one must either used deprecated (X)HTML or Flash/etc. to accomplish what /should be/ very primitive functionality. – Mike S Aug 13 '10 at 20:33
feedback

I design a more simplified ajax style file upload page without using JavaScript. I place a hidden iFrame just before the form tag. Please read the following. http://ramui.com/articles/ajax-file-upload-using-iframe.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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