To perform Show and Hide operation of an element in AngularJS, we use ng-show
and ng-hide
directive respectively.
In below code snippet, check box element has ng-model set as "IsShowHide" and the same is being used for ng-show and ng-hide directive.
<div ng-app>
Toggle Check it: <input type="checkbox" ng-model="IsShowHide" />
<div ng-show="IsShowHide" style="width:50px;height:50px;background-color:red;"></div>
<hr/>
<div ng-hide="IsShowHide" style="width:50px;height:50px;background-color:green;"></div>
</div>
Output
Views: 10373 | Post Order: 43