I\'m wondering how can I get the value of an input in a specific table cell using javascript?
input
You could use firstChild.value like this:
firstChild.value
var x = document.getElementById("tabela").rows[2].cells[3].firstChild.value;