Skip to content

Instantly share code, notes, and snippets.

@jsoningram
Created September 12, 2014 16:18
Show Gist options
  • Save jsoningram/a5ced8ce8906c381a4ff to your computer and use it in GitHub Desktop.
Save jsoningram/a5ced8ce8906c381a4ff to your computer and use it in GitHub Desktop.
Fix iframe z-index issue
$(document).ready(function(){
$('iframe').each(function(){
var url = $(this).attr("src");
var char = "?";
if(url.indexOf("?") != -1){
var char = "&";
}
$(this).attr("src",url+char+"wmode=transparent");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment