Search code examples
javascripthtmlnode.jssafari

Failed to load resource:Frame load interrupted in Safari browser while downloading multiple files


I am having download feature in my application. Here we can download multiple file as well. I am getting this error - **Failed to load resource:Frame load interrupted in Safari browser while downloading multiple files**

The issue is Only in safari. the download works fine in other browsers(Firefox, Chrome and IE).

I am using anchor tag to download .how to download file using anchor tag <a>


Solution

  • I had the same issue with Safari In my case I am creating a svg file and then converts it to a pdf file that's the file I'm downloading it works in other browsers (firefox, chrome) except for safari. (I didn't check this on IE)

    The problem with my code was there was missing 'xmlns=http://www.w3.org/2000/svg' attribute in the svg tag this fixed my problem hope this helps you