Skip to content Skip to sidebar Skip to footer

Saving CSV File Using Blob In Safari

I have codes below to generate the download link so that users could download the .csv file on my site. var link = document.createElement('a'); link.id = 'csvDwnLink'; window.URL

Solution 1:

I did a quick research - I looks like Safari does not support what you are trying to achieve.

The reason why your solution works in Chrome (and Firefox) is that they support the download attribute - Safari doesn't yet.


Solution 2:


Post a Comment for "Saving CSV File Using Blob In Safari"