Hey guys,
I was just wondering if there is a speed difference in which way you
access an element.
For example:
<div class="con"><p class="para" id="mine">Test</p></div>

Is it faster to use $("#mine")
-or-
to access the same element using the class, such as $("div p.para")
-or-
does it not even matter???

Just looking for some insight,
Thanks,
Matt

Reply via email to