When selecting elements with jQuery, I know that something like input.foo is faster than .foo, esp in IE. But what about when using .is()? It almost seems like it would be the reverse since there is less parsing to do of the .foo selector and fewer checks to make against the element in question. Am I correct about this? If I am, would the same logic apply to .delegate()?
Thanks,
Jim
.is()and.delegate(); one is a filter, the other is for binding events. For performance questions, I tend to run some tests on jsperf.com – Greg Pettit Dec 13 '11 at 19:11.is()and.delegate()there always is a context, I don't think that it matters in these cases. In both cases the selector isn't used to query anything but just to match the given element... – Šime Vidas Dec 13 '11 at 19:12.delegate()is used when an event bubbles to the thing to which you delegated. The original target of the event is matched against (a.k.a. filtered) the selector (as you would with.is()) to see if the event handlers should run. – JAAulde Dec 13 '11 at 19:14input.foovs..foo, if you are certain that you hold INPUT elements, there is no reason to use the longer selector. – Šime Vidas Dec 13 '11 at 19:17