Is it possible to detect - via Javascript or a different way - when a file transfer (browser downloading a requested file) is actually really complete?
If the browser requests a file, e.g. through an Ajax call, the success message (status 200, readystate 4) comes already before the file has actually been downloaded. But I need to know, when the transfer itself is completed. Any way to achieve this?
Thanks.