Link to home
Start Free TrialLog in
Avatar of simonprr
simonprr

asked on

Play Mp3 or Wav

I've been looking for ages for a bit of javascript code to play an mp3 or wav file on my web site.

Can anyone help please?
Avatar of jbrugman
jbrugman

for netscape, use:

function playSound(name)
{
onerror = null

var myMimetype = navigator.mimeTypes["audio/wav"];

if (myMimetype)
{
if (document.embeds[name] != null && document.embeds[name].IsReady())
{
document.embeds[name].play(false);
}
}
}

ASKER CERTIFIED SOLUTION
Avatar of jbrugman
jbrugman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of simonprr

ASKER

thanks.