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