Download file - vlob

PHOTO EMBED

Fri Mar 31 2023 12:22:24 GMT+0000 (Coordinated Universal Time)

Saved by @nataliaferraz #php

function download(pdfUrl, fileName) {
        fetch(pdfUrl).then(resp => resp.arrayBuffer()).then(resp => {
            const file = new Blob([resp], {type: 'application/pdf'});
            const fileURL = URL.createObjectURL(file);
            jQuery("#download-button-prev").attr('href', fileURL).attr('download', fileName);
        });
    }

    download(linkUrl, docName);
content_copyCOPY