Following up on this question, I have the following 2 options:
$("tr td").slice(3, 6);
And possibly something like this (algorithmically speaking, I mean; I know making new query strings for each element is kinda silly):
var subset = $( "tr td:nth-child(4)" );
for(var i=4; i<7; i++) subset.add( "tr td:nth-child("+i+")" );
Which would perform more efficiently? Would there be another more efficient solution?