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.