Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created December 29, 2015 08:50
Show Gist options
  • Save andreasvirkus/ac2c3d996bc7800ac83c to your computer and use it in GitHub Desktop.
Save andreasvirkus/ac2c3d996bc7800ac83c to your computer and use it in GitHub Desktop.
// v1
$.ajax({
url: path,
xhrFields: {
onprogress: function (e) {
if (e.lengthComputable) {
// Progress..
console.log(e.loaded / e.total * 100 + '%');
}
}
},
success: function (response) {
// Complete!
}
});
// v2
$.ajax({
url: path
}).progress(function (e) {
if (e.lengthComputable) {
// Progress..
console.log(e.loaded / e.total * 100 + '%');
}
}).success: function (response) {
// Complete!
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment