How To Handle Events On AngularJS ( ng-click Event In AngularJS )
Here we consider how to handle events in AngularJS.
Specifically, we will discuss about Click event in AngularJS.
For click event, we mainly use angular directive ng-click .
Here is the sample code for ng-click directive.

On the above example, we have one controller with model object Increment.
We are showing the value of this model object on the View.
The name of the Module is ModuleName.
The name of the Controller is ControllerName
Our aim is to increase the model value by one on each click event.
Lets consider the View Part.