Category Archives: Angular Js

AngularJS Filters

Filters can be added in AngularJS to format data. Filters are used to change modify the data. Following is the list of commonly used filters. Sr.No. Name Description 1 uppercase converts a text to upper case text. 2 lowercase converts a text to lower case text. 3 currency formats text in a currency format. 4… Read More »

AngularJS Expression

Angularjs expressions are used to bind the data to html.The angularjs expressions are written inside {{ expression }} . It also written inside a directive like ng-bind=”expression”. AngularJS expressions are much like JavaScript expressions. They can contain literals, operators, and variables. Eg: {{ 15 + 15 }} or {{ firstName + ” ” + lastName… Read More »

Dynamic Drop down menu – Angular JS

In this article, explain how to use select box using angular js in php or html page. AngularJS is a javascript framework. To implement this application, first include jquery files like <script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js”></script> Table Of Content HTML Javascript The HTML and Angular JS helps to perform dropdown menu. We can implement static and dynamic drop… Read More »