I have a page which displays dynamic flash content from issuu.com. I need to add wmode=\"transparent\" because otherwise navigation menu shows under flash. Is t
From another post here in stackoverflow, using JQuery this works
$("embed").attr("wmode", "opaque").wrap('');
I use this when using a FCKeditor youtube plugin, as the plugin doesn't wrap the embed node with a object node.
$('embed').each(function(){
if($(this).parent()[0]['tagName'] !='OBJECT'){
$(this).attr("wmode", "opaque").wrap('');
}
});