Si lo elementos son correlativos podrias hacerlo por medio de la clase css, algo asi:
Código Javascript
:
Ver original$(document).ready(function(){
$('.jp-player').each(function(index) {
var i = $(this).attr('id').replace('topten_', '');
var cancion = $("#rola_" + i).val();
$(this).jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: cancion
}).jPlayer("stop");
},
swfPath: "js",
supplied: "mp3",
cssSelectorAncestor: "#jp_interface_" + i
}).bind($.jPlayer.event.play, function() {
$(this).jPlayer("pauseOthers");
});
});
});
Saludos.