En fin, asi funciona:
Código Javascript
:
Ver original$("#galerias .rate").each(function(index) {
estrellas = $(this);
id = estrellas.attr("class")
id = id.replace("rate","")
estrellas.raty({
//showHalf: true,
start: estrellas.children("span").attr("class"),
path: ruta + 'app/utiles/rating/img/',
//starHalf: 'star-half.png',
starOff: 'star-off.png',
starOn: 'star-on.png',
onClick: function(puntaje) {
$.post( ruta + 'app/utiles/rating/puntuar.php', {objeto: id,puntaje: puntaje}, function(respuesta){
alert(respuesta);
})
}
});
});