I know how to construct a jQuery object from an Ember view that is in the DOM:
App.myView = Ember.View.extend({
elementId: "my_view",
didInsertElement: function(){
console.log(this.$().attr('id')) // outputs 'my_view'
}
});
<!-- HTML output -->
<div id="my_view">
<!-- ... -->
</div>
How about doing the inverse. Ginen a jQuery object, how do I get the corresponding Ember View object.
function(selector){
$el = $(selector);
// ???
}