I have an array called currentTD
that holds two integers, the first element in the array is an ID to a <TR>
element, and the second element in the array is the ID of a <TD>
element within that <TR>
.
I want to somehow select that <TD>
and change its background colour. I'm just not sure how I can select that <TD>
given the "co-ordinates" from currentTD
?
Thanks.