$.ajax({
xhr: function() {
var xhr = new window.XMLHttpRequest();
xhr.upload.addEventListener("progress", function(evt){
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
console.log(percentComplete);
}
}, false);
xhr.addEventListener("progress", function(evt){
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
console.log(percentComplete);
}
}, false);
return xhr;
},
type: 'POST',
url: "/",
data: {},
success: function(data){
}
});
BY LOVE
You need to call the progress bar class, That's IT
beforeSend: function ()
{
$('.loaderimg').show();
},
complete: function ()
{
$(".loaderimg").hide();
}
www.codegrepper.com
www.stackoverflow.com