Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
I think someone would have to be a major contributor to jQuery to really be able to answer that without checking. Benchmark it? – Matchu Oct 11 '10 at 12:58
1  
It would seem to me that you would want a > child selector in there so jQuery is only looking for <td> elements that are a direct child of <tr>. $("tr > td") – user113716 Oct 11 '10 at 13:04
Yes, that is true. – Hamster Oct 11 '10 at 13:10

2 Answers

up vote 3 down vote accepted

The first ($("tr td").slice(3, 6)) would perform much faster, as it's a single selector engine call, but as always, test it!

I set up a performance test so you can check both (and other answers) yourself here: http://jsperf.com/slice-performance-test

share|improve this answer
Interesting site. – Hamster Oct 11 '10 at 13:05

In the 1st code, you compute $('tr td') once and get a slice.

In the 2nd code, you compute $('tr td') 4 times, then extract the 4th to 7th child at each time.

Therefore the 1st code is faster. In fact, it is easier to read as well.

share|improve this answer
Yes, but I'm talking about algorithmic performance. I guess I was assuming each query would get each element out as if simply referencing an element in an array. – Hamster Oct 11 '10 at 13:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.