Skip to content

Instantly share code, notes, and snippets.

@metabobb
metabobb / download_blob_es6.js
Last active June 12, 2022 19:14
download a blob with javascript (ES6)
// tested on chrome
function get_download(url) {
var xhr = new XMLHttpRequest()
xhr.responseType = "blob";
xhr.open("GET", url , true);
xhr.onreadystatechange = function () {
if(xhr.readyState === 4 && xhr.status === 200) {
try {
window.URL.createObjectURL(xhr.response)
const a = document.createElement('a')