Skip to content

Instantly share code, notes, and snippets.

@inossidabile
Created January 9, 2012 08:46
Show Gist options
  • Save inossidabile/1582000 to your computer and use it in GitHub Desktop.
Save inossidabile/1582000 to your computer and use it in GitHub Desktop.
JQuery ajax upload.onprogress binding
$.ajax
# ...
xhr: ->
xhr = $.ajaxSettings.xhr()
if xhr.upload?
xhr.upload.onprogress = =>
console.log arguments...
return xhr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment