What directive would you use to hide elements from the HTML DOM by removing them from that DOM not changing their styling?

Technology CommunityCategory: AngularJSWhat directive would you use to hide elements from the HTML DOM by removing them from that DOM not changing their styling?
VietMX Staff asked 3 years ago

The ngIf Directive, when applied to an element, will remove that element from the DOM if it’s condition is false.