How can i count number of times the iframe has redirect with AngularJS?
I do so far with this code, but no luck.
I found if using JQuery can done like this.
Any help would be greatly appreciated!
How can i count number of times the iframe has redirect with AngularJS?
I do so far with this code, but no luck.
I found if using JQuery can done like this.
Any help would be greatly appreciated!
Finally i get the answer, this the code:
.run(function($ionicPlatform, $window) {
  $ionicPlatform.ready(function() {
    var i = 0;
    $window.iframeLoaded = function () {
        console.log('value of i: '+i);
        if(i === 1) {
            // something todo
        }
        i++;
    };
  });
})
Html:
<iframe  ng-src="{{frameUrl}}" onLoad="iframeLoaded()">
    Something was wrong!.
</iframe>