is there any way to add a param tag to all the object with a page. say i want to add <param name="wmode" value="transparent" /> to all the object. how can i make that happen.
You can get all the elements with document.getElementsByTagName('object') and then add the <param> tag to their innerHTML.