I'm developing a little web application, which fetches binary image data encapsulated in XML nodes by XHR. My current web application is using ArrayBuffers, ArrayBufferViews and Blobs to generate blob urls to show the fetched images in my html documents, which works perfectly fine. I need to support the Internet Explorer 9 (sigh), which doesn't support ArrayBuffers, ArrayBufferViews, Blobs or even TypedArrays.
I found an answer regarding ArrayBuffers and TypedArrays here: Internet Explorer Error : SCRIPT5009: ArrayBuffer is undefined
But what about Blobs? Any suggestions here? Or maybe (a hint for) a clever workaround?
Thanks in advance!