Saved Bookmarks
| 1. |
How can you hide an HTML element just by a button click in Angular? |
|
Answer» Ng-HIDE command is used to hide HTML elements if an expression is TRUE. Here's an example:<div ng-app="DemoApp" ng-controller="DemoController">
Now in the above, when the Hide Angular button is not clicked(the expression is set to false) |
|