Hi,
I am having some difficults selecting the proper cells in a table. I got a soccer games tables. Each table starts with ID 'game' and then the serial number, i.e: id='game122238' .
Each table has two rows. On the first row I have 5 cells. On the second one I got one team. On the third one I got the result. On the Fourth I got the second team.
I succeeded selecting all tables:
$('table[id^=game]');
But then I got stuck. How could I: A. getting all 'home teams' into one array. B. getting all results in another array. C. getting all 'away teams' into third array.
Thanks!