$("#mySecondDiv").bind('my-event', function(event, a ,b) { /* ... */ });
$("#mySecondDiv").trigger('my-event', [1, 2]);
bind()
method内で定義された関数を次に示します。この関数を一度グローバルに定義して、複数の要素に使用したい。
例えば :
function{ //definition }
$("#mySecondDiv").bind('my-event', --call above function here--);
$("#mySecondDiv").trigger('my-event', [1, 2]);
$("#myAnotherDiv").bind('my-event', --again call the same above function here--);
$("#myAnotherDiv").trigger('my-event', [1, 2]);
どうすればこれを達成できますか?