Skip to main content

Posts

Showing posts with the label Introduction about ng-messages in AngularJs

Introduction about ng-messages in AngularJs

The AngularJs ng-messages is a directive and its used for displaying the messages within the templates. The messages can be custom messages, error messages, or any kind of messages for the end user. The ngMessages is added in AngularJs 1.3 version. You can download to from below URLs. http://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular-messages.js The demo link , click http://embed.plnkr.co/fMG7VC140QzOkBlOV80Z/preview The example in detail about using ng-messages < !DOCTYPE html > < html > < head >     < meta charset ="utf-8">     < title > Introduction about ng-messages in AngularJs </ title >     < script src ="//code.angularjs.org/1.4.0/angular.js"></ script >     < script src ="//ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular-messages.js"></ script >     < script >    ...