No consigo acceder a la información almacenada en el input...
Mi script:
<script> function datosTextos() {
var textos = 'TablaDatos';
for (var i=0;i<document.getElementById('TablaDatos').rows.l ength;i++) {
for (var j=0;j<1;j++) {
textos = textos + document.getElementById('TablaDatos').rows[i].cells[j].innerHTML + '|';
}
}
alert(textos);
}
</script>
Mi input...
<td><input name="prioridad" type="text"></td>
Y claro solo me tira en el alert...
<input name="prioridad" type="text">
no me tira el contenido :(