Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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>

like image 633
Jeevitha G Avatar asked Jan 16 '15 07:01

Jeevitha G


1 Answers

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

like image 104
Tharindu Avatar answered Sep 25 '22 09:09

Tharindu