$(':input').blur(function () {
$(this).css('border', 'solid 1px #ccc');
// Check if last input and do line below
//if(condition if $(this) is last element)
// $('#someOtherId').focus();
});
上記のコードで、id $(this)が選択されたすべての入力の最後の入力であることを知る方法は?