Skip to content

Instantly share code, notes, and snippets.

@mattboon
Created November 3, 2011 17:51
Show Gist options
  • Save mattboon/1337181 to your computer and use it in GitHub Desktop.
Save mattboon/1337181 to your computer and use it in GitHub Desktop.
Fix YouTube Embeds appearing over position: fixed; items
// Fix YouTube embeds
$('iframe[src*="youtube"]').each(function() {
var url = $(this).attr("src");
$(this).attr("src",url+"?wmode=transparent");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment