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?
Try adding
?wmode=opaqueto the URL or&wmode=opaqueif there already is a parameter.If it doesn’t work try this instead,
&wmode=transparentwhich will work in IE browser as well.