Does it make sense to jQuery cache $(this)?

Viewed 2872

I'm still learning about jQuery, but I have not been able to find a solid answer. I know every time you use the jQuery selector $(...) there is a performance cost, but does $(this) have a significant cost where you should cache it before using it a lot?

var $this = $(this);
2 Answers
Related