I am developing a WEB APP with AngularJS, there is an element that is coming to the DOM after its loading, I am trying to write an event:
$('elemento').click()
But when you finish rendering the page the element does not yet exist because it is coming from ajax through the Angle, and because of that the event is not being associated with it.
How to associate Events or Capture elements, which enter the DOM after your LOAD?