Hey guys! So I asked this on stackoverflow first but nobody seems to notice or know the answer. I'm banging my head over this for a couple of days now and could really use some help:
So I'm using oidc-client and it works for every browser except IE11. I'm calling the function from a js bundle into a static html which is located in a public folder.
The first issue I tried solving is window.onload which doesn't seem to work in IE. So I changed the code in the html file to this (I added the CDN for the oidc-client in the html) and again it was working fine with the other browsers:
Hey guys! So I asked this on stackoverflow first but nobody seems to notice or know the answer. I'm banging my head over this for a couple of days now and could really use some help:
So I'm using oidc-client and it works for every browser except IE11. I'm calling the function from a js bundle into a static html which is located in a public folder.
the code in the callbacks.js is:
And this is the error i get in IE11:
The first issue I tried solving is window.onload which doesn't seem to work in IE. So I changed the code in the html file to this (I added the CDN for the oidc-client in the html) and again it was working fine with the other browsers:
But of course, the IE11 says different:
I tried a couple of more things, like setting a setTimeout and adding polyfills, added "new" in front of the window.onload function.