I didn’t tried for multiple songs, but for only one MP£ in graphical version change this line:
@line 70, you have to change
stopPreviousPlayer();
with
$("div#haiku-player" + num).jPlayer("play");
PS: according with this post of jPlayer:
jPlayer
I dunno about stop, you have to switch something into the js
To shrink into Play/Pause, open haiku-player.css and modify in this way
@line 10: change width to 22px
@line 16 and 21: add display:none
I’ve spent some hours to understand this simple things lol
Text Version under line 15 add this:
showStopBtn();
return false;
Graphical version @ line 59, change with this
$(this).jPlayer({
ready: function () {
this.element.jPlayer("setFile", audioFile).jPlayer("play")
$(buttonId + " a img.listen").hide();
$(buttonId + " li.play").hide();
$("ul#controls" + num).fadeIn('fast');
$("ul#info" + num).fadeIn('fast');
$("div#haiku-player" + num).jPlayer("play");
currentPlayer = num;
return false;
},
customCssIds: true,
swfPath: jplayerswf,
errorAlerts:true,
nativeSuport:false
})