I have a dynamically generated table, inside it I have a button to which I want to obtain its value
The button performs an action different to what is assigned its value, so I have assigned it a value there to use it in another action
I am trying to do it in the following way
var boton =document.getElementById("tabProd").rows[indice_fila_tabla].cells[6];
alert(boton.value);
However I can not get that value