Thanks for the input. I came back and read the jQuerys .on documentation .on . I did not know that you could skip this event. So I took both comments and combined them with something like this.
didInsertElement: function() { Ember.run.next(this, 'attachClickHandler'); }, attachClickHandler: function (){ var temp = this; $(window).on("click." + temp.elementId, function (e){
This allows a specific event for each instance of the view that I wanted. Thanks guys!
chris brown
source share