# Is the iframe tag fully supported on all platforms/browsers?

**URL:** https://forum.pinegrow.com/t/is-the-iframe-tag-fully-supported-on-all-platforms-browsers/4128
**Category:** Random
**Created:** [May 17, 2020, 5:58pm UTC](https://forum.pinegrow.com/t/is-the-iframe-tag-fully-supported-on-all-platforms-browsers/4128 "2020-05-17T17:58:27Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![ladlon](https://yyz2.discourse-cdn.com/flex036/user_avatar/forum.pinegrow.com/ladlon/32/928_2.png) [@ladlon](https://forum.pinegrow.com/u/ladlon)
#### Post date: [May 17, 2020, 5:58pm UTC](https://forum.pinegrow.com/t/is-the-iframe-tag-fully-supported-on-all-platforms-browsers/4128/1 "2020-05-17T17:58:27Z")

</div>

I checked caniuse, but it seems it only has the various attributes for the tag, as opposed to the tag itself… so, I assume the tag itself is supported? (Not necessarily all the attributes, as I see in the caniuse tables)

I normally have a regular link to my demo reel on my site, linking to the YouTube page (as a new browser window)… but was pondering whether I should go for an embedded video this time around (a bit cleaner)… but I only want to do it if it doesn’t require a bunch of workaround code (…I’m looking at you IE!..).

So, I just wanted to check if the iframe tag is supported by everything these days… Not using any of the special attributes. I just want it to embed the video, and have a control panel so the vistor can start the video themselves, as well as pause, etc).

---

<div class="post-metadata">

### Author: ![RobM](https://avatars.discourse-cdn.com/v4/letter/r/278dde/32.png) [@RobM](https://forum.pinegrow.com/u/RobM)
#### Post date: [May 18, 2020, 9:41am UTC](https://forum.pinegrow.com/t/is-the-iframe-tag-fully-supported-on-all-platforms-browsers/4128/2 "2020-05-18T09:41:29Z")

</div>

Hi @ladlon,  
This is actually the CanIUse for the main element.

 ![image](https://canada1.discourse-cdn.com/flex036/uploads/pinegrow/original/2X/e/e92ff197b32a22f37882b51a7d377305992bab61.png)  
There is also a great browser support table at the mozilla docs site  
[https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement)  
 ![image](https://canada1.discourse-cdn.com/flex036/uploads/pinegrow/original/2X/f/fe7e01bb3056b654e9f0ba415cdea29924d4217c.png)  
Basically, you can use a basic iFrame on any modern browser. I think you would be fairly safe using an iframe.  
Cheers,  
Bob

---

<div class="post-metadata">

### Author: ![droidgoo](https://yyz2.discourse-cdn.com/flex036/user_avatar/forum.pinegrow.com/droidgoo/32/2209_2.png) [@droidgoo](https://forum.pinegrow.com/u/droidgoo)
#### Post date: [May 18, 2020, 1:47pm UTC](https://forum.pinegrow.com/t/is-the-iframe-tag-fully-supported-on-all-platforms-browsers/4128/3 "2020-05-18T13:47:40Z")

</div>

if you want to put YOUR stuff in an iframe, it works just fine.

but many sites now block you from putting their content into an iframe, because of hijacking.

---

<div class="post-metadata">

### Author: ![RobM](https://avatars.discourse-cdn.com/v4/letter/r/278dde/32.png) [@RobM](https://forum.pinegrow.com/u/RobM)
#### Post date: [May 18, 2020, 2:39pm UTC](https://forum.pinegrow.com/t/is-the-iframe-tag-fully-supported-on-all-platforms-browsers/4128/4 "2020-05-18T14:39:29Z")

</div>

If you are doing youtube you can use the embed version so there is no origin clash. Here is an article by Moz that spells out pros and cons plus things to consider.

> **[From object to iframe — other embedding technologies](https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Other_embedding_technologies)**
>
> The topic of embedding other content in web documents can quickly become very complex, so in this article, we've tried to introduce it in a simple, familiar way that will immediately seem relevant, while still hinting at some of the more advanced...

---

<div class="post-metadata">

### Author: ![ladlon](https://yyz2.discourse-cdn.com/flex036/user_avatar/forum.pinegrow.com/ladlon/32/928_2.png) [@ladlon](https://forum.pinegrow.com/u/ladlon)
#### Post date: [May 18, 2020, 3:27pm UTC](https://forum.pinegrow.com/t/is-the-iframe-tag-fully-supported-on-all-platforms-browsers/4128/5 "2020-05-18T15:27:46Z")

</div>

Thanks guys. Some great info there!

For now, I just kept it as a \_blank link to the YouTube page… just to be safe.

I may play around with doing an embedded version later, though.
