Angular.JS Fever

Angular.js is a client-side JavaScript Framework used to make the HTML pages more interactive.

Download and Installations for angular.js can be found at https://docs.angularjs.org/tutorial

There are few important concepts in Angular.js as below –

  • Directives – HTML annotations that trigger the JavaScript behaviours

  • Controllers – Application behaviour is added in Controllers

  • Expressions – Values gets displayed on HTML using Expressions

Directives

Directives are attributes for a HTML tag that instructs HTML to refer a JavaScript code.

Controllers

Controllers helps us to get the data from the JavaScript onto the HTML page. We can define functions and values which allows us to define the behaviour of our app.

Expressions

Expressions allows us to insert or display dynamic data into HTML. They are usually written as follows in {{…}}

{{expression}}

Previous
Previous

The Iconic View

Next
Next

The Phonegap Fever