jqueryセレクターが機能しないのはなぜですか?
意見
Views.Now = Backbone.View.extend({
template:"mytemplate",
initialize:function () {
var self = this;
this.$el.find(".content").hide(); // selector is not working
}
});
レンプレート:
<div id="now">
<p class="loader">Waiting for connection</p>
<div class="content">
<button>hello world</button>
</div>