En internet encontre este codigo que sirve para capturar el valor de una celda en una tabla html, pero no funciona y no tengo idea de por que. He probado todas las combinaciones posibles.
De hecho en esta
pagina funciona perfectamente
Código Javascript
:
Ver original<script type="text/javascript">
//<!CDATA[
$(document).on("ready", function(){
$("#tablaBuscador table tr td").click(function() {
var celda = $(this);
alert(celda.html());
});
});
//]]>
</script>
Este es el formato de mi tabla.
Código HTML:
Ver original<div id="tablaBuscador" class="table-responsive" style=" height: 384px;overflow: auto; margin-top: 43px;" > <table class="table table-hover" style="margin-left: 25px;width: 96%; " id="buscadorProd"> <thead style="position: absolute; background-color: white; margin-top: -21px;"> <th style="width:10px; padding-right: 74px;">CÓDIGO
</th> <th style="width: 492px;">PRODUCTO
</th> <th style="width: 41px;padding-right: 11px;">U.M
</th> <th style="width: 66px;padding-left: 19px;">PRECIO
</th> <th style="width: 109px;padding-left: 27px;">STOCK
</th>
Las filas las creo dinamicamente mediante ajax. Espero me puedan ayudar, estoy trabado en esto que es muy importante en mi desarrollo. >.<