Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/05/2015, 12:45
Avatar de jolijun
jolijun
 
Fecha de Ingreso: mayo-2015
Mensajes: 19
Antigüedad: 9 años, 6 meses
Puntos: 4
Respuesta: Capturar valor de TD en tabla HTML

Prueba, pero no entiendo para que te serviria esto.

El error es que tu tienes th y el ejemplo buscaba td.

Código Javascript:
Ver original
  1. <script type="text/javascript">
  2. //<!CDATA[
  3.     $(document).on("ready", function(){                  
  4.       $("#tablaBuscador table tr th").click(function() {
  5.         var celda = $(this);
  6.         alert(celda.html());
  7.       });
  8.     });
  9. //]]>
  10. </script>