The ng:show and ng:hide allows you to show or hide a portion
of the HTML conditionally.
Dependencies
Usage
<ANY ng:show="expression">
...
</ANY>
Parameters
expression – {expression} –
if truthy then the element is
shown or hidden respectively.
Example
Click me: <input type="checkbox" name="checked"><br/>
Show: <span ng:show="checked">I show up when you checkbox is checked?</span> <br/>
Hide: <span ng:hide="checked">I hide when you checkbox is checked?</span>