pienso que seria algo asi
Código Javascript
:
Ver originaljQuery(document).ready(function($) {
$('.referencia').each(function() {
$(this).popover({
html: true,
trigger: 'manual',
content: function() {
var myRel = $(this).attr("rel");
var myRefe = "";
//Detectamos si hay coma
if(myRel.indexOf(',') != -1){
//Convertimos la cadena en array
var myRel_array = myRel.split(",");
//agregamos #ref a cada elemento del array
for(var i=0;i<myRel_array.length;i++) {
myRefe += $("#ref"+myRel_array[i]).html();
}
}
else {
//Si solo es un número
myRefe = $("#ref"+myRel).html();
}
return myRefe;
}
})
});
});