I\'d like to use some third party libraries that are based on jquery with ember. This library binds event on element like this :
$(\'#an-id\') .bind(\'anEven
Use the didInsertElement callback on a view, which gets invoked when the views has been added to the DOM. You can then access the added element via this.$().
didInsertElement
this.$()
App.MyView = Em.View.create({ didInsertElement: function() { this.$().bind('anEvent', ...); } });