Full file upload callback

I would like to track, exclusively on the client side, the progress of the file download, especially when downloading the file.

Is there a JavaScript API that allows me to define a callback when the file upload is complete?

+8
javascript
source share
1 answer

No, this is not possible using pure javascript. There are some methods that include using cookies from the server and continuous polling from the client. Here I gave an example:

Hide image using Javascript after MVC3 controller action completes

+1
source share

All Articles