I know how to get a cell\'s row and column index with jQuery, but I can\'t figure out the reverse. Given a row and column index, how would I access the td at this location?<
You can use the :eq selector:
:eq
var row = 1; var col = 2; var cell = $('table tr:eq(' + row + ') td:eq(' + col + ')');
Here's an example of this in action