I want to read a table from a web page and populate something else with those data.
I can access the whole table by it's Id, which is known.
So, I do something like :
Code: JavaScript
var myTable = document.getElementById("Table_A");
Now, how can I read the data in the different rows and columns and use them ?
Thanx in advance




