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 there a short way to do this with jQuery or simple java-script?
I don't want to change embed code every time a flash is added.
You could use this Jquery code:
$("object[type='application/x-shockwave-flash']").append('<param name="wMode" value="transparent"/>');