Using $(this)calls at least two (and possibly more than two) functions and allocates an object every time you use it (consuming memory, which ultimately needs to be fixed). This is additional work if you intend to reuse the same thing. I would recommend calling it once and then caching the result (for example, inside a function), rather than having a dozen lines $(this).foo(); $(this).bar();.
$ jQuery, :
var jQuery = function( selector, context ) {
return new jQuery.fn.init( selector, context );
}
, , - jQuery.fn.init. , , jQuery jQuery 18 . , , .: -)
. , DOM ( $(this)), jQuery.fn.init . , "" .