AngularJS Routing Example
Routing is one of the main feature of AngularJS. Use routing, we can create Single Page Application (SPA). The ngRoute module routes our application to… Read More »AngularJS Routing Example
Routing is one of the main feature of AngularJS. Use routing, we can create Single Page Application (SPA). The ngRoute module routes our application to… Read More »AngularJS Routing Example
Forms are the fundamental elements of any web application which involves user inputs. Forms are used when we want to accept some data from users… Read More »AngularJS Create Web Forms
AngularJS $http Service: Using $http service in AngularJS we can communicate with Web APIs, post data and get response from remote HTTP servers. $http service… Read More »AngularJS Using $http Service
AngularJS ng-repeat Directive: ng-repeat directive in AngularJS is used when we want to print all the items in an array or collection. It is useful… Read More »AngularJS ng-repeat Directive
AngularJS Filters Filters in AngularJS are used to filter and format data displayed on the View. They can be used in view, controllers and services… Read More »AngularJS Filters
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