I would like to embed a selection of MP3's and videos onto a page and seem to be having problems with the code playing all of them as soon as the page loads.
I have autoplay set to false and have also tried completely deleting the line, but it still does it. What am I missing?
Brennan Yetter Jazz | Music
MP3 Code:
Code:
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
width="200" height="16">
<param name="src" value="music/BYJazzBarbados.mp3" />
<param name="autoplay" value="false" />
<param name="pluginspage" value="http://www.apple.com/quicktime/download/" />
<param name="controller" value="true" />
<!--[if !IE]> <-->
<object data="music/BYJazzBarbados.mp3" width="200" height="16" type="video/quicktime">
<param name="pluginurl" value="http://www.apple.com/quicktime/download/" />
<param name="controller" value="true" />
</object>
<!--> <![endif]-->
</object>
Video Code:
Code:
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
width="320" height="260">
<param name="src" value="video/BYJazz1.mov" />
<param name="autoplay" value="false" />
<param name="pluginspage" value="http://www.apple.com/quicktime/download/" />
<param name="controller" value="true" />
<!--[if !IE]> <-->
<object data="video/BYJazz1.mov" width="320" height="260" type="video/quicktime">
<param name="pluginurl" value="http://www.apple.com/quicktime/download/" />
<param name="controller" value="true" />
</object>
<!--> <![endif]-->
</object>
On this same web site I am getting a HTML validation error with the lightbox script and it's only doing it on one photo for some reason.
Brennan Yetter Jazz | Gallery
Error:
Line 55, Column 189: there is no attribute "rel".
…th="200" height="150" border="2" rel="lightbox" /></a></td>
I did cheat with this page and use tables to align all of the gallery images. Is that why it's doing that?