I have the following embed tag:
<embed type="application/x-shockwave-flash" width="640" height="505" src="url_to_video" allowscriptaccess="always" allowfullscreen="true"></embed>
I have about five abstracts on the page, and I would like to add the wmode = "opaque" attribute to all of them. However, I tried to do it like this, and it did not work:
$j("embed").attr('wmode','opaque');
Is there any other way to dynamically set the wmode = "opaque" attribute?
Thank!
source
share