-
Embedding mp3s in XHTML Strict
I would need to use object tags instead of embed, yes? Problem is I just can't get it to work D:
This is pretty much what I have:
<object src="file.mp3" type="audio/mpeg">
<param name="autostart" value="false" />
</object>
Can someone tell me what I'm doing wrong :kaodizzy:
-
Maybe it works if you use this:
<object type="audio/mpeg" width="200" height="50" data="file.mp3">
<param name="src" value="file.mp3" />
<param name="filename" value="file.mp3" />
<param name="type" value="audio/mpeg" />
Error text
</object>
-
Ooh, that worked, thanks!
-
You're welcome
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules