Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let me be clear this line of code works right now. I just feel like its written stupid. Do you know a cleaner way to write this:

 $('#'+this.wrapper.id+' .nub').foo();

I ran the answers through jspref.com and here are the results: http://jsperf.com/jquery-selector-context-test

Looks like .find is the winner. Atleast in chrome.

share|improve this question
people who downvote and don't comment are worse than hitler, worse I say! – Fresheyeball Aug 10 '12 at 4:41
I have gotten some great and very valid answers already guys, come on with all the downvotes. There is nothing illegitimate about wanting to write your code better, even in trivial cases. – Fresheyeball Aug 10 '12 at 4:46
This is not a bad question, you are correct. – undefined Aug 10 '12 at 4:51
1  
I didn't downvote, but it could be argued that this question would be better placed on codereview.stackexchange.com. – nnnnnn Aug 10 '12 at 5:02
@nnnnnn +1 for valid criticism – Fresheyeball Aug 10 '12 at 5:08

4 Answers

up vote 1 down vote accepted
 $(this.wrapper).find('.nub').bar();
share|improve this answer
Best answer according to benchmark. And you did answer make the suggestion before xdazz – Fresheyeball Aug 10 '12 at 5:04
$('.nub', this.wrapper).foo();
share|improve this answer

You could use this.wrapper as the context of the selector.

$('.nub', this.wrapper).foo();

or

$(this.wrapper).find('.nub').foo();
share|improve this answer

It's not actually that bad. If you wanted, you could put the selector string into its own variable, though:

var selectorString = "#" + this.wrapper.id + " .nub";
$(selectorString).foo();
share|improve this answer
meh, thats basically the same. Really I already have part of the selection as a dom element, should be able to leverage that somehow. – Fresheyeball Aug 10 '12 at 4:39
1  
@Fresheyeball - Well, there's not much to improve upon. It's only only line of code. To be honest, I don't think there's anything wrong with your current solution. – jeff Aug 10 '12 at 4:41
Nah, I want to know the best way to do this E-V-E-R! Its just one line, but I will have to use a similar selector often. Its worth knowing the right way. – Fresheyeball Aug 10 '12 at 4:43
@Fresheyeball - Actually, I would consider your current solution the best way to do it. There are other ways, of course, and any of them could be argued to be the best. I believe your way would be the fastest, though. – jeff Aug 10 '12 at 4:48
I have updated the question with a benchmark – Fresheyeball Aug 10 '12 at 5:02
show 1 more comment

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.