Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to implement a horizontal multilevel dropdown navigation menu. Immediately below (vertically) the menu, I've got a YouTube video embedded via iframe. If I hover over one of the main level nav items in Firefox, the dropdown menu properly appears on top of the video.

In Chrome and IE9, however, only a sliver of the dropdown is visible in the small region of space I have between the menu and the iframe. The rest of it seems to be behind the iframe.

The problem seems to be related to the YouTube video, not the iframe. To test, I aimed the iframe at another web site rather than the video, and the dropdown menu worked fine, even in IE.

Question 1: WTF?

Question 2: Why, even if I explicity put a "z-index:-999 !important;" on the iframe does this problem still occur?

Is there some internal CSS that the YouTube embed code includes that is somehow overriding things?

share|improve this question
Can you post a link - it's difficult to give a helpful response without code. – toomanyairmiles Jan 30 '12 at 21:59
My test page is at jewishfamilysvc.org/index-new-menu.php (I removed the z-index since it didn't seem to make a difference). The trouble-maker is around line 160 or so. Hover over "about us" - in FF it correctly lands on top of the video. In IE and chrome it does not. – user249493 Jan 30 '12 at 22:40

migrated from webmasters.stackexchange.com Jan 31 '12 at 4:25

4 Answers

up vote 43 down vote accepted

Try adding wmode, it seems to have two parameters.

&wmode=Opaque

&wmode=transparent

I can't find a technical reason why it works, or much more explanation but take at look at this query.

<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/lzQgAR_J1PI?wmode=transparent" frameborder="0" wmode="Opaque">

or this

//Fix z-index youtube video embedding
$(document).ready(function (){
$('iframe').each(function(){
var url = $(this).attr("src");
$(this).attr("src",url+"?wmode=transparent");
});
});
share|improve this answer
1  
(I'm the OP) Thanks everyone! I stumbled upon a similar solution at manisheriar.com/blog/flash_objects_and_z_index The key seems to be using both name="wmode" value="transparent" on a <param> and wmode="transparent" on the <embed>. As I suspected, it's not an iframe issue. It seems to be an issue with Flash wanting (demanding?) the highest z-index unless you force it to be transparent. – user249493 Jan 31 '12 at 1:26
+1 very useful thanks – Joshc Jul 23 '12 at 14:07
1  
If you're using the iframe JS API a playerVar wmode also works although it's not documented. – Richard M Jul 26 '12 at 10:55
awesome thank you! – mr_kurrupt Nov 29 '12 at 18:22
This fix worked for me. YouTube should include this param in their documentation. – AyexeM Feb 6 at 16:17
show 3 more comments

Joshc's answer was on the right track, but I found that it totally deletes the ?rel=0 querystring and replaces it with the ?wmode=transparent item - which has the effect of displaying the YouTube Suggested Videos list at the end of the playback, even though you originally didn't want this to happen.

I changed the code so that the src attribute of the embedded video is scanned first, to see if there is any question-mark in it already (because this denotes the presence of a pre-existing querystring, which might be something like ?rel=0 but could in theory be anything that YouTube choose to append in the future). If there's a querystring already there, we want to preserve it, not destroy it, because it represents a setting chosen by whoever pasted in this YouTube vid, and they presumably chose it for a reason!

So, if a? is found, the wmode=transparent will be appended using the format: &mode=transparent to just tag it on the end of the pre-existing querystring.

If no ?s are found, then the code will work in exactly the same way as it did originally (in toomanyairmiles's post), appending just ?wmode=transparent as a new querystring to the URL.

Now, regardless of what may or may not be on the end of the YouTube URL as a querystring already, it gets preserved, and the required wmode parameters get injected or added without damage to what was there before.

Here's the code to drop into your document.ready function:

$('iframe').each(function() {
  var url = $(this).attr("src");
  if ($(this).attr("src").indexOf("?") > 0) {
    $(this).attr({
      "src" : url + "&wmode=transparent",
      "wmode" : "Opaque"
    });
  }
  else {
    $(this).attr({
      "src" : url + "?wmode=transparent",
      "wmode" : "Opaque"
    });
  }
});
share|improve this answer
This worked for me whereas the accepted answer didn't (even after fixing the code). Thanks for the drop-in fix. – Tom Apr 16 at 17:14

I have the same problem on youtube iframe embeds only in internet explorer though.

Z-index was being ignored totally, or the flash video was just appearing at highest index possible.

This was what I used, slight adapting the above jquery script.

My embed code, straight from youtube...

<iframe width="560" height="315" src="http://www.youtube.com/embed/QldZiR9eQ_0?rel=0" frameborder="0" allowfullscreen></iframe>


The jQuery slighty adapted from the above answer...

$('iframe').each( function() {
    var url = $(this).attr("src")
    $(this).attr({
        "src" : url.replace('?rel=0', '')+"?wmode=transparent",
        "wmode" : "Opaque"
    })
});


Basically if your don't select Show suggested videos when the video finishes in your embed settings, you have a ?rel=0 at the end of your "src" url. So I've added the replace bit incase ?rel=0 exists. Otherwise ?wmode=transparent won't work.


share|improve this answer

Just add one of these two to the src url:

&wmode=Opaque

&wmode=transparent

<iframe id="videoIframe" width="500" height="281" src="http://www.youtube.com/embed/xxxxxx?rel=0&wmode=transparent" frameborder="0" allowfullscreen></iframe>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.