Copy link to clipboard
Copied
Hi, I am having trouble displaying iFrame content on IE. So it works fine on other browsers. From what i can see on the network on the browser, the content is returned with the response, just that it does not get rendered, if i inspect iframe element after load, the content is not there.
FYI in the header response, the server also returns an "Access-Control-Allow-Origin : *", to cater for CORS. So now I am not sure what else I need to do to make it work.
code snippet below
<iframe src="https://embed.iono.fm/epi/495316"
width="100%" height="135"
frameborder="0"
class="podcast-iono-image__iframe">
<a href="https://iono.fm/e/495316">Content hosted by iono.fm</a>
</iframe>
Copy link to clipboard
Copied
Is your OS Windows 7? I think I've read something about a bug in IE 11 that shows up when you embed responsive content.
Maybe you should try to set width to a fixed number (not %).
Just a buckshot guess...
/Jacob
Copy link to clipboard
Copied
Hi Hokster, this does not seem to work. I removed percentage but still blank.
Thanks for the attempt, if you have any other ideas please do share
Copy link to clipboard
Copied
Sorry....
Edge cannot be installed on Windows 7
But:
meta http-equiv="X-UA-Compatible" content="IE=edge could be an issue if you are testing on a Windows 7 in IE.
Also MSE will not work in IE. That might be a problem if your media files are interpreded as adaptive streaming.
/Jacob
Copy link to clipboard
Copied
I forgot to mention that i have tried this on Windows 7 and 10 and failing on both instances. Initially this was happening intermittently, now it does not seem to render at all
Copy link to clipboard
Copied
So funny thing is happening. the component only works on prev browsers of IE (8,9,10) and still fails no 11.
I did this by emulating the other IE browsers. I am thinking it could be access related. So if that is the case could it be that only IE is restricted to allow such content on the company workstations? because I can definitely see it rendered on other browsers.
But if restrictions are being implemented, is there a way to avoid these? I changed security settings on IE to allow for iFrames and still did not work.
Please assist