I am trying to get the table td
texts by using Jquery
and javascript
I have the following
//tables contain bunch of tables
for(var i = 0; i < tables.length ; i ++){
var table = tables[i];
$(table 'td').each(function(){ //I know there is something wrong with my selector.
$(this).text()
})
The jquery
selector doesn't work in my case. How do I select every td for different table?
Thanks for the help!