Hi How to run jquery scripts when I load data in ng-repeat. jquery works good when I have a static dom element, but when I use ng-repeat scripts not working I need to use dynamically height of div, and bootstrap tooltip. I have this code:
$(document).ready(function () {
//myMovies
//$('.templates_movies').height($('.templates').outerHeight());
$(document).on("load", ".templates_movies", function() {
$('[data-toggle="tooltip"]').tooltip();
});
});
But it's not working. Please help me.