Last Updated: February 25, 2016
·
1.713K
· paullonorato

How to disable z-index of Youtube iFrame on IE

The code original:

<iframe width="640" height="360" src="//www.youtube.com/embed/GfX0753bUEE?rel=0" frameborder="0" allowfullscreen></iframe>

The code with "the magic":

<iframe width="640" height="360" src="//www.youtube.com/embed/GfX0753bUEE?wmode=transparent" frameborder="0" allowfullscreen></iframe>

You must change ?rel=0 to ?wmode=transparent, only this!