Angular JS – Conditional rendering with ngIf

With this directive we can chose what to render and what to not render based on our model’s status. It’s different from the ngShow directive, because here we aren’t rendering at all.

<div class="myContent" ng-if="showContent">
    This is my content
</div>

Leave a comment