I have a Backbone app and we have stuff like this:
render: function() {
this.$el.html(_template());
$('#id').plugin();
return this;
}
The #id is from an element that's being rendered. This only works sometimes, as it can take longer for it to actually insert into dom.
Is there a way within this view, to define a callback or somehow know for sure that the dom has been updated, before calling our plugin() function?
Thank you!
$('#id').plugin();or afterrender()is called for the view? – dave Oct 29 '12 at 17:43..plugin(), you don't want client code to have to worry about that stuff. Normally this code should be synchronous soplugin()shouldn't be getting called before thehtmlcall is finished. Your_templatemethod may be doing something that breaks the flow and then the event should be triggered at that point inside of_template– Matt Whipple Oct 29 '12 at 17:51