This code gets the text that is in a specific column of the table row:
var keyA = $(a).children('td').eq(column).text().toUpperCase();
Q: How do I rewrite this to get the value of an input tag in a table cell?
var keyA = $(a).children('td').eq(column).('input').val().toUpperCase();
source
share