Hi,
I have an mp3 file coded like this:
<audio id="myaudio" autoplay>
<source src="sound/mybig.mp3" type="audio/mpeg">
</audio>
I want to attach a function to it, so that the function fires when the player starts.
I've done a trawl of the basics, but can't see an "onplay" event... like
<audio id="myaudio" autoplay onplay="myFunction();">
Any advice appreciated.
Cheers.