I have a jQuery function that I want to run only after my AngularJS template has rendered on the page.
I know there's $(document).ready()
for jQuery which runs the code inside it when the DOM is ready for JavaScript to run. But is it possible to create something like an $(angular).ready()
that tells jQuery when Angular's template has loaded? Is there some easy way to get these two frameworks to talk to each other?