View Single Post
Old 05-10-2013, 10:22 AM  
wizzart
scriptmaster
 
wizzart's Avatar
 
Industry Role:
Join Date: May 2006
Location: Serbia
Posts: 5,237
Code:
<param name="wmode" value="transparent" />
Add that to embed object. Also it can be added with jQuery

Code:
$(function(){
$('object').append('<param name="wmode" value="transparent" />');
});
If you using just embed without object:

Quote:
<embed wmode="transparent" ....
Code:
$(function(){
$('embed').attr("wmode","transparent");
});
wizzart is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote