I am using a PHP header for downloading a JAR file and APK files in mobile. I can download the files successfully, but I want to show a popup when the download reaches 100%. How do I achieve this?
Is there any callback method for the download complete event?
header('Content-Type: '.$mime);
header('Content-Length: '.$stat['size']);
header('Connection: close');
header('Content-disposition: attachment; filename='.$file_name);
readfile($path_to_file);