Warning: Angular newbie ahead.
I have this code in an angular.js page
<div class="clearfix" ng-controller="Controller">
<h1>Active Ideas
<button type="button" ng-click="search()">get Ideas</button></h1>
<hr>
and then I have defined my controller as:
function Controller($scope, $http) {
$scope.search = function(){...
And it works fine.
I'd like to execute search() function when the dom is ready...
I tried calling it from a $(function() {... but I don't know how to manually execute a method from my controller
Also tried with
$scope.$on('$viewContentLoaded', function() {
But couldn't make it work (and couldn't find much documentation either...)