0

I embed the music in my website. it's working in IE but auto start is not working in Mozilla and chrome. please help to fix this issue. HTML:

<audio controls>
    <source src="media/file.mp3" type="audio/mpeg">
    <source src="media/file.ogg" type="audio/ogg">
    <embed height="50" width="100" src="media/file.mp3" autostart="true">
</audio>

Thanks

Mooseman
  • 18,763
  • 14
  • 70
  • 93
user3265980
  • 39
  • 1
  • 10

1 Answers1

0

Use autoplay: <audio controls autoplay>.

The autostart attrbiute does not exist in the spec.

Mooseman
  • 18,763
  • 14
  • 70
  • 93
  • please, i have one more doubt.Music is stopped if may i turn to another link and starts from beginning. any option for the music is play continuously whether i go to another page like aboutus, products something like. – user3265980 Feb 15 '14 at 06:09
  • Once the page is unloaded, the music is gone. If this is a requirement, you could load content with ajax instead of having separate pages. – Mooseman Feb 15 '14 at 15:53