I don\'t know JQuery, so I\'m hoping there is a way to do this in pure Javascript.
I need to click on a table row and get the value of each cell in that row. Here i
$("tr").click(function () { var rowItems = $(this).children('td').map(function () { return this.innerHTML; }).toArray(); });