Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/11/2010, 13:32
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 7 meses
Puntos: 101
Respuesta: easyRating de prototype con una sola consulta

En fin, asi funciona:

Código Javascript:
Ver original
  1. $("#galerias .rate").each(function(index) {
  2.        
  3.             estrellas = $(this);
  4.             id = estrellas.attr("class")
  5.             id = id.replace("rate","")
  6.            
  7.             estrellas.raty({
  8.                      
  9.               //showHalf:  true,
  10.               start:        estrellas.children("span").attr("class"),
  11.               path:         ruta + 'app/utiles/rating/img/',
  12.               //starHalf:   'star-half.png',                                
  13.               starOff:      'star-off.png',                              
  14.               starOn:       'star-on.png',  
  15.      
  16.               onClick: function(puntaje) {
  17.                
  18.                 $.post( ruta + 'app/utiles/rating/puntuar.php', {objeto: id,puntaje: puntaje}, function(respuesta){
  19.                     alert(respuesta);                  
  20.                     })             
  21.               }
  22.              
  23.             });
  24.         });