Live examples code for web technologies, feel free to use them in your personal or commercial projects.
If you have a how to problem to ask, please ask here.
In this section, we shall learn about Directives, how to create different types of custom directives, adding event listeners to directives, directives that can manipuates DOM element, using templates for directive etc.
Events are action or occurence detected by browser on a particular type of action by the end user. There are many types of events
Click
DblClick
Mouseover
Mouseout
MouserEnter
MouseOut
Keypress
Keyup
Keydown
etc.
In this section, we sh ...
In this section, we shall learn server call related services in AngularJS that is used to send asynchrnous request to server and receive response.
In AngularJS, communication to the server is done using $http service. As per official website of Angu ...
In this section, we shall learn caching in AngularJS where we will cache data temporarily in the browser memory. For this we shall use AngularJS $cacheFactory service.