N
Newbie
I need to iterate through all the cells in an HTML-like table, e.g.
<for-each select="tr">
<for-each select="td">
Get coordinates of cell here
</for-each>
</for-each>
How can I access my position in the outer loop from within the inner loop?
<for-each select="tr">
<for-each select="td">
Get coordinates of cell here
</for-each>
</for-each>
How can I access my position in the outer loop from within the inner loop?