We all know that it is good to cache calls in the DOM, so instead of calling $ ('# someElement') for more time, just save it in var $ someElement and use this.
But the same when using $ (this) inside an event listener? Should $ (this) be cached?
Thanks.
source share