Category: AngularJs

angular js

Introduction – AngularJS

Misko Hevery, a Google employee, developed AngularJS. First version 1.0 of AngularJS was released in 2012. Now AngularJS is fully…

9 years ago

Expressions – AngularJS

AngularJS expressions contain operators,literals, and variables.  AngularJS expressions can be written inside HTML while JavaScript expressions can't be.  AngularJS expressions…

9 years ago

Modules – AngularJS

Modules are containers for appication controller. They contain different parts of an application. [html] {{ state + " " +…

9 years ago

Directives – AngularJS

Using Directives you can extend HTML attributes. In AngularJS you can define your own directives while it has its own…

9 years ago

Models – AngularJS

Using ng-model directive you bind value of input controls to the application data. [html] My Name: [/html] Try   Validating…

9 years ago

Controllers – AngularJS

Controllers are used to control the flow of data in AngularJS application. ng-controller directive is used to define controller. Controllers…

9 years ago

Scope – AngularJS

Scope joins the view and the controller. There are 3 parts of AngularJS program: Model, View and Controller. $scope is…

9 years ago

Filters – AngularJS

AngularJS provides Filter to modify data in view. There are different types of filters as per requirement. uppercase : uppercase…

9 years ago

Services – AngularJS

Services are JavaScript functions that are designed to perform some specific operation. These services can be called by controllers and…

9 years ago

AJAX Http – AngularJS

$http service is used to get data from remote server. It makes HTTP request to get data. Following are methods…

9 years ago