![]() |
VOOZH | about |
The task is to create a button dynamically with a click event using AngularJS, i.e., whenever someone clicks on the button then a new button gets created. The easiest way to create a button in AngularJS is to use the ng-repeat directive. We can easily hook up a repeat logic inside a button click event by using the ng-click Directive.
Syntax:
<element ng-repeat="variable in expression">
Contents...
</element>
Example: Here we have a counter variable that keeps the count of buttons currently present in the DOM. it gets increased by one each time the main button (GFG) is pressed. the increased count results in a new button generated by the ng-repeat directive.
Output: As we keep on clicking the button, the number of buttons keeps on increasing in the DOM:
👁 Image