Is it possible to refer to original list by this or other variable. Lets say I have code like this:
$('input').focus(function(){
$(this).css('border','solid 10px');
});
This will make any input that has focus its border thicker, but I want all inputs border to be thicker when anyone of the inputs has focus that were in the list. I know it can be done by reselecting all inputs, but for efficiency sake is there any variable that lets you access original jquery list inside event handler.