Given the following markup:
<audio controls onclick="alert('hi')">
<source src="/url/track.mp3" type="audio/mpeg">
</audio>
I get no response from the onclick event. Seems like all the onclick events are bound to the player controls.
My goal is to run a separate function when the user hits "play".