AngularJS
AngularJS Animations
In AngularJS, you can build animated transition with the help of CSS. The CSS transforms the HTML elements that give you an illusion of motion….
AngularJS AJAX
AngularJS provides a $http service for reading data and remote servers. It is used to retrieve the desired records from a server. AngularJS requires data…
AngularJS Validation
AngularJS provides client-side form validation. It checks the state of the form and input fields (input, textarea, select), and lets you notify the user about…
AngularJS Forms
AngularJS facilitates you to create a form enriches with data binding and validation of input controls. Input controls are ways for a user to enter…
AngularJS HTML DOM
In AngularJS, some directives can be used to bind application data to attributes of HTML DOM elements. These directives are: Directive Description ng-disabled It disables…
AngularJS Select
In AngularJS, you can create a dropdown list (select box) based on items in an array, or an object. Using ng-options You should use the…
AngularJS Tables
The ng-repeat directive is used to draw tables in AngularJS. Displaying tables with AngularJS is very easy and simple. Let’s take an example. This example…
AngularJS Filters
In AngularJS, filters are used to format data. Following is a list of filters used for transforming data. Filter Description Currency It formats a number…
AngularJS Dependency
AngularJS comes with a built-in dependency injection mechanism. It facilitates you to divide your application into multiple different types of components which can be injected…
AngularJS Scopes
The Scope is an object that is specified as a binding part between the HTML (view) and the JavaScript (controller). It plays a role of…