Possible Duplicate:
What is the cost of '$(this)'?
I constantly see in some developers code where $(this)
may exist 3-5 times referring to the same dom node. I'm wondering at what point this is worth optimizing and storing in a variable like var el = $(this);
?
Does anyone know of a good reliable source for documentation on the performance of this?