check if audio is playing jquery code example
Example: jquery check if audio is playing
$("audio").on({
play:function(){
// the audio is playing!
}});
$("audio").on({
play:function(){
// the audio is playing!
}});