bootstrap-typeahead ライブラリの render 関数を変更したいとしましょう。 http://twitter.github.com/bootstrap/assets/js/bootstrap-typeahead.js
この目標を有効にする 1 つの方法は、次のようにすることです。
_.extend($.fn.typeahead.Constructor.prototype, {
render: function (items) {
// some code
}
});
次のような特定の要素のためだけにレンダー関数を再定義したいとしましょう…</p>
element.typeahead({
minLength: 3,
source: getSource
});
この要素に対してのみ有効にするには、レンダリング関数をどのように再定義する必要がありますか?
PS:
jquery とアンダースコアを使用しています