I have a table, it has an ID of 'thetable'. It has (according to FireBug), an unnamed TBODY, and an unnamed TR. Likewise, the three TDs inside that I want to access are unnamed. Is there any CSS selector that I can use to reference these?
I've tried:
table#thetable:nth-child(1)
But that's not working.
EDIT: I'll elaborate. I'm using Jsoup to pull this data into strings. I'd like to take the text of each TD in the table (of which I know the name) and put all that into an array. The tough part is that this isn't my site, and the number of TDs will not always be three, so I need to put them all into arrays.
Something like this:
// Pseudocode for all the TDs into an array
Elements strings = doc.select("table#thetable: children");