Category Archives: AngularJs


April 5, 2015 4:03 pm

Your first Angular.js note-keeping app part 1


Your first Angular.js note-keeping app part 1
It provides a two way data binding which leads to less custom JavaScript. Two way data binding means that you would not have to redisplay model data each time you change it. For instance, if you have a user model and the user changes his name in your app - all instances which display his name on the page will be changed to the new name automatically.

[ Read More ]


February 1, 2015 6:40 pm

How to do Routing and Views in AngularJs


How to do Routing and Views in AngularJs
In this tutorial we will go through few more important features in AngularJs called Routing and Views. Once we develop the application with more features it will grow and tough to manage all the templates of views and hard to manage. So it will be good if we divide the whole application into multiple views and load them using routing makes application more logical and easily manageable.

[ Read More ]


January 25, 2015 6:23 pm

AngularJs Expressions


AngularJs Expressions
Welcome to our next tutorial in this tutorial we will go through in detail about AngularJs Expressions and also some basic things for every AngularJs guy should know. Angular expressions are JavaScript like code snippets that are usually placed in bindings such as {{ expression }}.

[ Read More ]