Lately i have been wondering if there is a performance difference between repeating the selector just over and over again or just using a var and store the selector in that and just refer to it.
$('#Element').dothis();
$('#Element').dothat();
$('#Element').find('a').dothat();
or just
var Object = $('#Element');
Object.dothis();
Object.dothat();
$('a', Object).dothat();
I prefer the second way because it looks cleaner and is better maintainable.