AngularJS Events
AngularJS Events Events in AngularJS are actions or a function call performed when clicking a HTML element, mouse click event, keyboard keyDown, keyUp events, focus… Read More »AngularJS Events
AngularJS Events Events in AngularJS are actions or a function call performed when clicking a HTML element, mouse click event, keyboard keyDown, keyUp events, focus… Read More »AngularJS Events
AngularJS Scopes: Scopes in AngularJS application is an object which makes available all the functions and variables in a Controller and to HTML View. It… Read More »AngularJS Scopes
AngularJS Data Binding AngularJS Data binding ensures two-way binding and provides synchronization between the view and the model. Using One-Way Data Binding: One-way binding only… Read More »AngularJS Data Binding
AngularJS Controllers AngularJS Controllers attaches a controller class to the view. Controllers are used on HTML view using ng-Controller directive. Almost all the time you… Read More »AngularJS Controllers | ng-Controller
AngularJS Directive ng-Model: The ng-Model directive binds an input,select, textarea or a custom form control to a model object (using variable name declared during HTML… Read More »AngularJS ng-Model Directive
AngularJS Directives AngularJS Directives are attributes on a DOM element. This attributes are used by AngularJS HTML’s compiler to attach a behavior as per the… Read More »AngularJS Directives
AngularJS Modules: AngularJS Modules defines an application. It is like a container for different parts of an application – controllers, directives, filters, services, scope, etc.… Read More »AngularJS Modules