There is no need to store the link thisin a variable unless you need to pass this context to closure.
Here is an example of when you might need to pass the pointer thisto close, for example, the click event for an element that needs a link to what the pointer pointed to thisin the external, parent event context:
init : function() {
$('.someElem').click(
(function(self) {
return function() {
self.method1();
self.method2();
self.method3();
}
})(this)
);
}
-, . , , .