Ng-Non-Bindable-1

 

Ng-non-Bindable directive when you do not want to compile or bind application data to the html element.It display {{1+2}} as it.

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script> </head> <body ng-app> <div> <div>Normal: {{1 + 2}}</div> <div ng-non-bindable>Ignored: {{1 + 2}}</div> </div> </body> </html>
Output