フォーカスアウト時にキーダウン イベントを再バインドしようとしています。再バインド時にキーダウンに何を渡すかはよくわかりません。これを渡そうとしましたが、運がありませんでした。
誰?ありがとう
$('input.text').bind({
click : function(e) {
},focusin : function(e) {
},focusout : function() {
// rebind keydown
// $(this).bind('keydown', this);
},keydown : function() {
$(this).unbind('keydown');
}