using the Standalone version of audioplayer - works great in FF, but nada in IE7 - any ideas?
using the Standalone version of audioplayer - works great in FF, but nada in IE7 - any ideas?
well, I got this to work - apparently the standalone version doesn't like being part of a <td> tag - I added a <span> tag and it works fine
FROM (works in FF, not IE7)
<td id="ap1"><script type="text/JavaScript">AudioPlayer.embed("ap1", {soundFile: "http://mysite.com/my.mp3"});</script></td>
TO (works in both)
<td><span id="ap1"><script type="text/JavaScript">AudioPlayer.embed("ap1", {soundFile: "http://mysite.com/my.mp3"});</script></span></td>
This topic has been closed to new replies.