Если кому будет необходимо:
$('#fileupload').each(function () {
var that = this;
$.getJSON('/news/t', function (result) {
if (result && result.length) {
$(that).fileupload('option', 'done')
.call(that, null, {result: result});
}
});
});
Вопрос решен.