> anything else won't work as well. Right now, my sample code is FF-only until I can get that up and running (since FF is better for JS debugging). After that, I'll work on IE (using the double-object method). Apple's method works, but it doesn't validate. Compare it to this:
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="<?php echo $moviewidth; ?>" height="<?php echo $movieheight; ? >"> <param name="src" value="<?php echo $filename ?>" /> <param name="controller" value="true" /> <param name="autoplay" value="false" /> <!--[if !IE]>--> <object type="video/quicktime" data="<?php echo $filename ?>" width="<?php echo $moviewidth; ?>" height="<?php echo $movieheight; ?>"> <param name="autoplay" value="false" /> <param name="controller" value="true" /> </object> <!--<![endif]--> </object> Anyway, this doesn't have any bearing on my JS problem. Aaron