I am using angular js one of my project and I call "ng-click" function as below
<a ng-click="logout'{{x.ParentEntityId['#text']}}')" target="_blank">{{x.Title["#text"]}}</a>
In "x.ParentEntityId['#text']" value is "7560183E-1C37-40FE-BACC-8A5B5021FBD7"
When my page load I am getting below error.
When I passed static value in logout function it working perfectly. Like as below
<a ng-click="logout('hi')" target="_blank">{{x.Title["#text"]}}</a>
Logout function as below:
$scope.logout = function (item) {
alert('logout' + item);
};
Please let me know if I am missing something.
