Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/03/2013, 14:14
Avatar de Fleon
Fleon
 
Fecha de Ingreso: febrero-2010
Mensajes: 138
Antigüedad: 14 años, 9 meses
Puntos: 3
Respuesta: problema para obtener atributo id

Me respondo, lo que hice fue en vez de usar el clink en el atributo id del elemento usé el de la clase:

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2.            $(".vota").click(function(evento){
  3.               evento.preventDefault();
  4.               var oID = $(this).attr("id");
  5.               var oID = oID.split("a-va-");
  6.               var userID = ', $user_info['id'] ,';
  7.               alert(userID + " " + oID[0] + " " +oID[1]);
  8.               $("#a-votes-" + oID[1]).load("http://localhost/foro/votar.php", {user: userID, id: oID[1]}, function(){
  9.                 $("#a-shake-" + oID[1]).text(function(i, oldText) {
  10.                     return oldText === \'vota!\' ? \'Listo!\' : oldText;
  11.                 });
  12.               });
  13.            });
  14.         })