How can I add sound to a web site . I don't want to show .swf player in the page .music should play in the background

link|improve this question

26% accept rate
3  
Please don't do that. – Michael Aaron Safyan Jul 28 '10 at 3:27
Its a client requirement.I have to.And in this case they are right:-) – Joemon Jul 28 '10 at 3:38
Nothing makes me close a website faster than sound playing. It's just wrong on all levels. – Cruachan Aug 12 '10 at 18:49
feedback

3 Answers

You can use the <audio> tag, but check if that is supported in all browsers you are interested in. If not, you can use an invisible swf.

But I'd recommend you not to putting background sound into the site, it tends to be really annoying.

link|improve this answer
feedback

Hide the div element inside which you put the swf object, in the page. Set the display state to none instead of block. Something Like :

<div style="display:none;">

<Your swf object>

</div>
link|improve this answer
feedback

It's old but it works.

9 Versions to play a sound on a web page

I've used version 8 "Using a Java Applet called from JavaScript" for firefox and IE8.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.