[jQuery] Selectors: Any faster/slower together?...
Just wondering if there is any performance difference between:
$("#div1, #div2, span.someSpanClass, input:text").show();
vs doing them individually like this:
$("#div1").show();
$("#div2").show();
$("span.someSpanClass").show();
$("input:text").show();