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

Using javascript with jQuery, I am adding an iframe with a youtube url to display a video on a website however the embed code that gets loaded in the iframe from youtube doesnt have wmode="Opaque", therefore the modal boxes on the page are shown beneath the youtube video.

Any ideas how to solve the issue?

share|improve this question

7 Answers

up vote 163 down vote accepted

try adding &wmode=opaque to the URL.

share|improve this answer
nice! works on firefox & chrome but for some reason doesnt work on IE... any ideas ? – danfromisrael Nov 24 '10 at 13:10
25  
try using &wmode=transparent instead – Shabith Nov 25 '10 at 7:23
24  
The "&wmode=xxxx" setting assumes that you're already passing parameters in the URL. I wasn't in my case, so I instead need to add "?wmode=xxxx" to the URL. – Matt Huggins May 27 '11 at 20:29
4  
Differences between opaque and transparent. opaque is supposed to be more performant. – donut Sep 14 '11 at 17:36
3  
Shabith - "wmode=Opaque" should be "wmode=opaque" (lowercase 'o') – John Mar 19 '12 at 13:39
show 3 more comments

Try adding ?wmode=transparent to the end of the URL. Worked for me.

share|improve this answer
'Transparent' should be the preferred option in my opinion. – Foxinni Oct 17 '12 at 9:19

Adding ?wmode=opaque to the URL seems to solve this problem for me, although I have not tested it in IE yet.

For those of you having troubles with the previously proposed solution, note that an inital ampersand will only work if you are already supplying other arguments to the URL. The first argument must have an initial question mark: http://www.example.com?first=foo&second=bar

share|improve this answer
I was initially getting a black rectangle regardless of the video I was trying to show.. turned out the test machine didn't have flash installed and the dialogue for installing flash was offset too much! – Zeb Sep 16 '11 at 12:44

If you are using the new asynchronous API, you will need to add the parameter like so:

<!-- YOUTUBE -->
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "http://www.youtube.com/player_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

// 3. This function creates an <iframe> (and YouTube player)
//    after the API code downloads.
var player;
var initialVideo = 'ApkM4t9L5jE'; // YOUR YOUTUBE VIDEO ID
function onYouTubePlayerAPIReady() {
    console.log("onYouTubePlayerAPIReady" + initialVideo);
    player = new YT.Player('player', {
      height: '381',
      width: '681',
      wmode: 'transparent', // SECRET SAUCE HERE
      videoId: initialVideo,      
       playerVars: { 'autoplay': 1, 'rel': 0 },
      events: {
        'onReady': onPlayerReady,
        'onStateChange': onPlayerStateChange
      }
    });
}

This is based on the google documentation and example here: http://code.google.com/apis/youtube/iframe_api_reference.html

share|improve this answer
4  
Note that this ALSO needs wmode in playerVars. When it's just under YT.Player, it will only work for the HTML5 player. Adding wmode to playerVars also sends that parameter to the Flash object, which has its own z-order problem. See here: groups.google.com/forum/?fromgroups#!topic/youtube-api-gdata/… I'll edit your answer accordingly. – Dylan McCall Mar 21 '12 at 4:18

Add &amp;wmode=transparent to the url and you're done, tested.

I use that technique in my own wordpress plugin YouTube shortcode

Check its source code if you encounter any issue.

share|improve this answer
Adding &amp;wmode=transparent after the you tube URL Solved the problem across all browsers. Thanks for Mr Tubal, Good job :) – user657543 Mar 13 '11 at 14:13

Just a tip!--make sure you up the z-index on the element you want to be over the embedded video. I added the wmode querystring, and it still didn't work...until I upped the z-index of the other element. :)

share|improve this answer

&wmode=opaque didn't work for me (chrome 10) but &amp;wmode=transparent cleared the issue right up.

share|improve this answer

protected by Community Jun 16 '11 at 14:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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