Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
script
src
="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"
>
<
/script
>
<
body
>
<
div
ng-app
=""
>
<
p
ng-hide
="true"
>
I am not visible.
<
/p
>
<
p
ng-hide
="false"
>
I am visible.
<
/p
>
<
/div
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> <body> <div ng-app=""> <p ng-hide="true">I am not visible.</p> <p ng-hide="false">I am visible.</p> </div> </body> </html>
Result:
Privacy Policy