Archive for the 'jquery' Category

2 月 21 2008

prototype.jsのFunction.bindをjQueryでも。

Published by haga under ajax, javascript, jquery

prototype.jsで関数のスコープを任意のオブジェクトに委譲する Function.bindメソッドはイベントのコールバック関数なんかで使うのにすこぶる便利なんだけど jQueryには意外とそれっぽい機能がないよう [...]

2 responses so far

2 月 01 2008

jQueryでホットキーするメモ

Published by haga under javascript, jquery, 日記

jQueryでホットキーを処理するメモ

どの入力フォームにもフォーカスしていない場合 nとpで特定の処理を実行するサンプル

$(this).keypress(   function(e)   {     if( $.inArray(e.target,$('input')) <0 )     {       if( e.which==112 )       {         hoge();       }       else if( e.which==110 )       {         foo();       }     }   } )

No responses yet