I need to download a file using jquery. That file is generated on the server when user clicks a link. My requirements (I want to emulate AJAX functionality. I know AJAX _does_not_ handle file download):
1. User stays on the same page.
2. A callback is triggered in case there is an error/exception on server side
3. A callback is triggered in case teh request was successful on server

My Approach:

I am setting content-disposition as attachment and returning the binary data from the server. On the javascript side I have the following function:

function download (url, data, method, callback){
 var inputs = '';
 var iframeDL;
 if(url && data){
     if($("#iframeDL")) $("#iframeDL").remove();
        iframeDL= $('<iframe src="[removed]false;" name="iframeDL" id="iframeDL">  </iframe>').appendTo('body').hide();

     $.each(data, function(p, val){
      inputs+='<input type="hidden" name="'+ p +'" value="'+ val +'" />';
   });

     if (iframeDL.attachEvent){
      iframeDL.attachEvent("load", function(){
       callback();
      });
     } else {
      iframeDL.load(function() {
          callback();
      });
     }

     $('<form action="'+ url +'" method="'+ (method||'post') + '" target="iframeDL">'+inputs+'</form>').appendTo('body').submit().remove();

 }
}    

This meets my first two requirements but not the third one.

My questions:
1. How does the above approach work? I fail to understand why callback is fired when there is an exception on server (I am new to webdev and found the above on a forum).
2. How can I trap the success condition(3rd requirement)? It would be helpful if I can create a callback for success condition similar to error callback above. If not possible then a hack might be possible, trapping the open/save browser dialog event.

link|improve this question
feedback

1 Answer

You can follow this approach (illustrated using jquery here):

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
function download(url, data, method, callback) {
    $.ajax({
       url: url,
       success: function() {
          <b>place your Iframe code here</b>
          alert("Success");
       },
       error: function() {
          alert("Error at server");
       }
    });
}

In the server side code, if it is successful, you can generate output with content-disposition as attachment and return binary data. If there is an error, you can return any of the HTTP error -- like

<?php
header("HTTP/1.0 404 Not Found");
?>
link|improve this answer
The problem is due to security model of browser you cannot download a file with ajax. I want file open/save dialog to come up, that's why the iframe hackery. – lazy functor Nov 16 '10 at 10:37
I understand. Can you place the Iframe call within the success response, which will then download the attachment? The only problem will be calling the server side code twice. To improvise, the first time when you call the server side, it can by a dry_run -- not actually sending the attachment. Upon success, calling the server side will now actually send the attachment. Will this help? – rsmoorthy Nov 16 '10 at 11:34
What if the problem occurs second time and not the first time (during dry run). And secondly I need success callback to stop a loading animation, this approach would not help with that. – lazy functor Nov 16 '10 at 13:27
feedback

Your Answer

 
or
required, but never shown

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