Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

AngularJS ng-non-bindable Directive


Example

This paragraph should not be compiled by AngularJS:

<div ng-app="">
<p ng-non-bindable>This code is not compiled by AngularJS: {{ 5+5 }}</p>
...
</div>
Try it Yourself »

Definition and Usage

The ng-non-bindable directive specifies that the content of this HTML element, and its child nodes, should not be compiled by AngularJS.


Syntax

<element ng-non-bindable></element>

Supported by all HTML elements.


Parameter Values

The ng-non-bindable directive does not have any parameters.