I'm using gt() to add columns to a table.
I need to use the row number and the column number to build the cell id.
Getting the column number is straightforward:
var c = $("#gridLayout tr:first td").length;
but how can I get the current index from gt() for the row number?
$("#gridLayout tr:gt(0)").append('<td>.......</td>');