I have a simple setup. I have the file embedded with audio tags, and then a link that when clicked on, will play that sound. Here is my code for one of the sounds.
<audio id="AFool" src="sounds/A Fool.wav" preload="auto"> </audio>
<a onclick="document.getElementById('AFool').play()" preload="auto" > <p>A Fool</p></a>
I am running Firefox 26.0 on a Mac OSX 10.8.5. This code works on both safari and chrome. Any help would be greatly appreciated.
Based on the details, here are a few things that could be wrong:
<audio>
tag.Note that the QuickTime plugin should not be in play at any point here.