Hey, hm I have tried embedding music in my website portal with this code
"<bgsound src=\"/bg/bg.mp3\" loop=\"2\">" and It seems like it isn't working, could someone please tell me the correct way of doing this? o.0
Printable View
Hey, hm I have tried embedding music in my website portal with this code
"<bgsound src=\"/bg/bg.mp3\" loop=\"2\">" and It seems like it isn't working, could someone please tell me the correct way of doing this? o.0
not sure how to make it loop twice though sorry, I'm guessing you'll need a function in another language?Code:<embed src="/bg/bg.mp3" autostart="true" loop="false" hidden="true">
For cross browser compatibility, this should work a bit better (it's just combining both of your code)
Source: http://www.thesitewizard.com/webdesi...undmusic.shtmlCode:<embed src="bg/bg.mp3" autostart="true" loop="true"
width="2" height="0">
</embed>
<noembed>
<bgsound src="bg/bg.mp3" loop="infinite">
</noembed>
Edit: Hope it's not too obsolete :o
Hope that helps ;)