How to call a function on refresh in angularjs

4.3k Views Asked by At

I have 2 functions in which 1 is called from the other

  callfunction1()
    $scope.function1 = function (data) {
        $('#sample-model').modal('show');
     };

 function callfunction1(){
    $scope.onClickSupport();
 }

I am triggering the first function through a button but when ever the page is refreshed function 1 should be called which is not happeng with my code.Here on debugging the console is not enterring the callfunction1().Can anyone help me please.Thanks.

2

There are 2 best solutions below

0
On

Just use like this

 <div data-ng-controller="myCtrl" data-ng-init="yourFunctionwhichuwanttocall('%some_backend_value%')"></div>

because on page reload you can initialize your controller view with a function call . so in html

<div data-ng-controller="myCtrl" data-ng-init="function1('%some_backend_value%')"></div> 

After that call function 2.thanks hope it will help you..

0
On

The ng-init directive initializes application data.

<div ng-init="function1()" ></div>

$scope.function1=function(){
     //your code
}