-
-
Save Lalmi-Issam/23383a49d4aed0c341562a319922f8e7 to your computer and use it in GitHub Desktop.
ajax download file with progress bar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var target = "file destination"; | |
// check compartibility | |
// reset progress bar | |
$('.progress-bar').css('width', '0%').attr('aria-valuenow', 0); | |
var xhr=new XMLHttpRequest(); | |
xhr.overrideMimeType('application/octet-stream'); | |
xhr.open('GET', target, true); | |
xhr.responseType='arraybuffer'; | |
xhr.send(); | |
xhr.onprogress=function(e){ | |
var value = e.loaded + ""; | |
var prog = value[0] + value[1]; | |
// update progress bar | |
$('.progress-bar').css('width', prog+'%').attr('aria-valuenow', prog); | |
}; | |
xhr.onload=function(){ | |
// fill progress bar | |
$('.progress-bar').css('width', '100%').attr('aria-valuenow', 100); | |
var resArray=new Uint8Array(xhr.response); | |
var blob=new Blob([resArray], {type: 'application/octet-stream'}); | |
// add href attribute to target link | |
$("#readyLink").attr("href", URL.createObjectURL(blob)); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment