I can\'t believe how long this has taken me but I can\'t seem to figure out how to extract a cell value from an HTML table as I iterate through the table with JavaScript. I
If you are looking for the contents of the TD (cell), then it would simply be: col.innerHTML
col.innerHTML
I.e: alert(col.innerHTML);
alert(col.innerHTML);
You'll then need to parse that for any values you're looking for.