AngularJs event to call after content is loaded

According to documentation of $viewContentLoaded, it supposed to work Emitted every time the ngView content is reloaded. $viewContentLoaded event is emitted that means to receive this event you need a parent controller like <div ng-controller=”MainCtrl”> <div ng-view></div> </div> From MainCtrl you can listen the event $scope.$on(‘$viewContentLoaded’, function(){ //Here your view content is fully loaded !! … Read more