I\'m using jQuery file upload plugin.
I don\'t use the UI part, only basic one.
When I do the following, I\'m having an issue in
Actually this is what the jquery.iframe-transport.js is for (the basic version also include this plugin as additional reference). What you need is to set the dataType property to json and the jquery.iframe-transport plugin will automatically parse the iframe result, so you can have the same logic in your done handler.
$('#fileupload').fileupload({
...
dataType: 'json'
...
});