I\'m looping through cells in a table row. each cell has a text box in it, and I want to take the value of the text box and push it onto an array.
function dothi
val() is a jQuery method. .value is the DOM Element's property. Use [0].value or .eq(0).val()....
val()
.value
[0].value
.eq(0).val()