Hi everyone!
I'm using jQuery Flexigrid and I can get a table cell text by doing:
$('.trSelected td:nth-child(2) div').text();
Actually, I'm doing a $.each so I can get each cell text in separate. Otherwise, if I select more than one cell, these cells texts come together as one big string.
But, the problem is: for each (td:nth-child(2)) text I get, I want to get the next td text (td:nth-child(3)), but I can't it so far.
I've tried:
$(this).next().text()
But it didn't work! Thanks in advance!