In AngularJS parsers are used to sanitize / convert the $viewValue. $parsers are array of functions to execute, as a pipeline, whenever the control reads value from the DOM. The functions are called in array order, each passing its return value through to the next. The last return value is forwarded to the $validators collection. […]

Read More →

In an angularjs application if you have encountered [$compile:multidir] error then you must be having multiple directives applied to the same DOM element, and processing them would result in a collision or an unsupported configuration. To resolve this issue remove one of the directives which is causing the collision. Example scenarios of multiple incompatible directives […]

Read More →

Developing AngularJS applications is fun. However, debugging certain aspects of your application might not be as straight forward as we might think. Here are few tricks we can use to inspect the AngularJS application from the javascript console of your browser. In webkit based borwser if we inspect the element, then that element can be […]

Read More →