hey guys, is there any parameter where i could apply a classname to a swfobject?
<script type="text/javascript">
var params = { allowScriptAccess: "always" };
swfobject.embedSWF("http://www.youtube.com/v/j_aFmziaRdU&enablejsapi=1&playerapiid=ytplayer_13", "ytplayer_13", "425", "365", "8", null, null, params);
</script>
This gets rendered as <object ...
Is there any chance where i could add a classname to this <object
when creating it with swfobject? like <object class="classnam" ...
You use the attributes parameter (there is no direct link to the paragraph, open link and search for "STEP 3: Embed your SWF with JavaScript" headline) to assign an id or a class to the object. You could then use
document.getElementById()
to get the object, once it has been created. Or use#id
or.classname
from CSS, just the way you would expect it to work. Caution, though:attributes.class
would cause an error (it's a reserved keyword), you have to useattributes.styleclass
to set the classname.