/** * Fix wMode for embedded YouTube iFrames **/ function wmodeFix(){ $('iframe[src*="youtube"]').each(function() { var iframe_src = $(this).attr('src') + '?wmode=transparent'; $(this).attr("src",iframe_src); }); }