いいタイトルが思いつかなかったのですが、javascriptの method.call の使い方がようやく分かったので備忘録。 tl;dr //インフォメーション用のDomのテキストを変更するメソッド function chMsg(text){...} $('input.responsible') .on('click', function(){ chMsg('click'); }) .on('change', function(){ chMsg('update!'); }) .on('input', function(){ chMsg('edit...'); }); function chMsg(text){ $(this).parent().find('.infomation').text(text); } $('input.responsible') .on('click', fun