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");
});