Alternative for 'download' attribute in Safari/iOS

I have a blob created with a base64, and I need to make this data downloadable as a pdf.

I created this snippet:

    var blob = new Blob([byte]);
    var link = document.createElement('a');

    link.href = window.URL.createObjectURL(blob);
    link.target = '_blank';
    var fileName = name + '.pdf';
    link.download = fileName;
    link.click();

It works on all the browsers, except safari mobile on iOS.

The file gets actually downloaded, but its name is "unknown", then it can't be open since the extension gets lost.

The problem is that the download attribute lacks support on this browser and IE.

There are a lot of workarounds for IE, but I didn't find any for Safari/iOS.

Do you know how can I download a blob got from a base64 (no XHR involved) in this browser?

Thank you


I need to make this data downloadable as a pdf (...) in safari iOS

SHORT ANSWER: you can't. Due this bug is impossible to download the file on safari iOS


The alternative is to open the file on the browser with the proper mime type, so it can show its content (and the user can then manually download it if needed).

Make sure to pass mime type when creating the Blob. reference

var blob = new Blob([byte], {type: 'application/pdf'});

Lastly, I'd strongly suggest you to use FileSaver.js which that can handle most of the corner cases/multiple browser support for save (or in this case, open) a file in javascript.


As per the below link:-

https://caniuse.com/#feat=download

Safari 13 Beta 3 is released so you can check on the same, whether its working or not?

You can download a blob got from a base64 by using a atob function.

The atob function will decode a base64-encoded string into a new string with a character for each byte of the binary data.

You can save blob locally via FileSaver.js .

You can also check here that would be helpful:- How to open Blob URL on Chrome iOS