I have an Angular 1.4.9 app. I'm using a third party JS plugin (Jasny Bootstrap). It has some JS components, which appear to use simple JQuery.
Their docs say that the plugin emits events at key points, such as "itemShown". I was wondering if I can detect this in my page's controller and act upon it, as in:
"on itemShown function () {..."
If you embed jQuery in your app (because Angular embeds jQlite by default, but not jQuery), here is one solution.
You can do it from the controller, after your element is ready:
Nonetheless, there must be some workarounds without jQuery.
You can see more on the documentation https://docs.angularjs.org/api/ng/function/angular.element