Hi, I'ved got some html content that looks like this.
How do I extract out the table rows ? this is the best i am able to do, but it goes dumps the whole table, how can i get every tr row items ?
var sections = select(dom, 'table.sectiontable');
should i do something like this ? var sections = select(dom, 'table.sectiontable + tr') ?
thanks!
Hi, I'ved got some html content that looks like this.
How do I extract out the table rows ? this is the best i am able to do, but it goes dumps the whole table, how can i get every tr row items ?
var sections = select(dom, 'table.sectiontable');
should i do something like this ? var sections = select(dom, 'table.sectiontable + tr') ?
thanks!