I\'m getting an InvalidStateError at the blob creation line on IE 11. Needless to say, it works in Chrome and Firefox. I can see that the binary data is my cli
InvalidStateError
Spent some time on this and actually found out adding new Uint8Array works:
new Uint8Array
var blob = new Blob([new Uint8Array(request.response)], {type: 'application/pdf'});