I'm currently trying to figure out what or why I am unable to get my player to show up in IE and in FF. It shows up in IE for others that use the embedded player for sound clips, but when I try to code it into my website it won't work. It just shows a Q for quicktime. I'm not sure on what I am doing wrong. Here is the code that I have:
Code:
<p style="text-align:center">
<!--[if IE]><!-->
<object data="mountainchorus.mp3" type="audio/mpeg" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="280" height="16">
<!--<![endif]><!-->
<!--[if !IE]><!-->
<object data="mountainchorus.mp3" type="audio/mpeg" width="280" height="16">
<!--<![endif]-->
<param name="src" value="mountainchorus.mp3" />
<param name="autoplay" value="false" />
<param name="controller" value="true" />
<embed src="mountainchorus.mp3" />
Click <a href="mountainchorus.mp3">here</a> to hear the media clip.
</object>
</p>