Search code examples
javascripthtmlipadsafariwebkit

Play mp3 on iPad Safari


Is it possible to play embedded MP3 on iPad Safari (the way you do on normal desktop browsers) ?

If yes, do we need to code separately for iPad Safari ?

The reason I am asking is bcoz in my app, the desktop code for mp3 is not working on iPad.. The code for desktop is

<EMBED src="'+audioUrl+'" autostart=true loop=false volume=100 hidden=true>

Solution

  • To add to the excellent answers of Blindy and John, the IPad should be HTML5 compliant which means that you can use the HTML5 audio and vido tags. You can read more about this at The Safari Developer Library.