次のコードを使用して、フォーカスされている入力のIDを取得します。
$('#searchColumnFields input').focus(function(){
thisId = $(this).css('id');
$(this).css('border-color', '#CCEBFF');
pos = $(this).position() ;
$('#searchHelper').html(thisId);
$('#searchHelper').fadeIn(250).css('left', pos.left-20);
})
ただし、thisId
nullに戻り続けます。
私は何が間違っているのですか?