vasanth kumar

vasanth kumar

  • 1.5k
  • 231
  • 25.2k

Not reload the page in Ng-Click

Aug 12 2019 2:38 AM
<a class="button" ng-click="L(Post)" ng-if="Post.uid =='true'" href="/About/Aboutpage" style="text-decoration:none;" ng-init="LDetails(Post)">
<input type="image" alt="" src="~/Images/like.png" style="max-height:20px; max-width:20px;" />&nbsp;Like<span class="badge">{{Post.L}}</span>
</a>
<a ng-click="L(Post)" ng-if="Post.uid !='true'" href="/About/Aboutpage" style="text-decoration:none;" ng-init="L(Post)">
<input type="image" alt="" src="~/Images/liked.png" style="max-height:20px; max-width:20px;" />&nbsp;Home<span class="badge">{{Post.L}}</span>
</a>
 
This is my code. How to stop reloading the page in Ng-Click? 

Answers (6)