Ie9 Error: "Blob" - undefined

this http://jsfiddle.net/bCRm3/17/

(export Kendo mesh to csv)

works fine in firefox, chrome and IE11

in ie9 im getting

            blob = new Blob([csv], { type: 'text/csv;charset=utf-8' }); //Blob.js
            saveAs(blob, fileName); //FileSaver.js

'Blob' - undefined show, line 141 character 17

Is there any way around this for ie9? (im not sure if this works on ie10)

+4
source share
1 answer

Check Blobcompatibility with object browser:

Browser compatible

Chrome  Firefox (Gecko) Internet Explorer   Opera   Safari (WebKit)
20      13.0 (13.0)     10                  12.10   6 (536.10)

Please note that this is not supported by all browsers, including IE9 or ealier:

https://developer.mozilla.org/en-US/docs/Web/API/Blob

+6
source

Source: https://habr.com/ru/post/1541768/


All Articles