1
I need to get the audio ID that the play user, I figured something like this would work:
document.addEventListener('play', function(e){
$(this).attr('id');
}, true);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<audio controls id="musica1">
<source src="https://65381g.ha.azioncdn.net/9/9/5/3/onlinepontocom-01-mais-uma-vez.mp3" type="audio/mpeg">
</audio>
<audio controls id="musica2">
<source src="https://65381g.ha.azioncdn.net/9/9/5/3/onlinepontocom-01-mais-uma-vez.mp3" type="audio/mpeg">
</audio>
It even detects the click on play, but does not return the ID, there is some way?