Reputation: 510
Given each cell has row, col attributes. I've tried something like
$(#mytable tr td row=1 col=1)
But it doesn't work
Upvotes: 0
Views: 741
Reputation: 32803
You can use first-child
or nth-child
. For example:
$("#mytable tr:first-child td:first-child")
$("#mytable tr:nth-child(1) td:nth-child(1)")
Upvotes: 1