Skip to content Skip to sidebar Skip to footer

Downloading PDF As Blob With JS In IE9

I have a blob and want to download it. It works for Chrome, Firefox, IE10 and higher. The problem is IE9. var isIE = /*@cc_on!@*/false || !!document.documentMod

Solution 1:

As you can read here the Blob constructor is supported from IE version 10. You may want to use PDF.js.


Post a Comment for "Downloading PDF As Blob With JS In IE9"