バックボーンとrequirejsを使用。定型入力を使いたい。ビューに別の jQuery コンストラクトを配置すると、問題なく動作しますが、電話フィールドにマスクが表示されません。私は何を間違っていますか?ありがとう。
render: function(){
var compiledTemplate = _.template( RegisterTemplate, this.model );
this.$el.html(compiledTemplate);
$("#custphone").mask("(999) 999-9999"); //masks not showing up
$("#custphone2").mask("(999) 999-9999");
$("#custzip").mask("99999");
$("#venuezip").mask("99999");
$().acknowledgeinput({ //works fine!
success_color: '#00FF00',
danger_color: '#FF0000',
update_on: 'keyup'
});