Page is a not externally linkable
rocknbil - 4:31 pm on Jul 14, 2011 (gmt 0)
Welcome aboard ringer37, the short story is other browsers don't properly render the video via the object element, they require the embed element.
<object>
....
</object>
<embed ....>
Unfortunately IE would then display two videos, so the legacy solution is invalid html by nesting the embed in the object element
<object>
....
<embed ....>
</object>
There are many ways around this but require working with HTML5 or Javascript . . . to get you through short term, look up a page with video and view source, see how they are nesting <embed> inside <object> and how to assign your parameters to embed.