I have not used much jquery and I can not do this:
I have a li with id="play1" when I click on it: play a song and when I come back click on "play1" to pause the playback. so always, play / stop.
<li id="play1">
$( "#play1" ).click(function()
{
//si play1 click ejecutar audio1.play();
//otro click en play1 ejecutar audio1.pause();
});
use a counter?