$.ajax({
url: 'upload.php',
type: 'POST',
data: data,
processData: false,
contentType: false,
xhr: function(){
var xhr = new XMLHttpRequest();
xhr.upload.addEventListener('progress', function(evt){
if(evt.lengthComputable) {
var percentComplete = Math.ceil(evt.loaded / evt.total * 100 );
$("#progress").css('width', percentComplete+'%');
}
}, false);
return xhr;
},
success: function(respond){
alert('ВОТ ЗДЕСЬ Я ПОНИМАЮ ЧТО ФАЙЛ ЗАГРУЗИЛСЯ');
}
});
но прогресс бар быстрее заполняется