Angular Toggle a Div on Button Click Example
I am going to share a simple example of angular toggle show hide div on button click event. you can learn how to toggle elements in angular 8 application. i will give you normal example of toggle div on button click event using ngIf and hidden.
You can easily use show hide toggle div on click event in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 application.
In this example, i will give you two example of angular toggle element on click. one if using *ngIf and another is using [hidden]. we will create buttons with two methods. When you click on that function we will set true and false value in variable. Using that variable we will hide show our div or element.
You can see both example, let's see how it works:
Example 1:
app.component.html
<h1>Toggle a Div on Button Click Angular Example - ItSolutionStuff.com</h1>
<button (click)=toggleDisplayDiv() >Toggle display Div</button>
<div [hidden]="isShowDiv">This is ItSolutionStuff.com Div.</div>
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'appComponent';
isShowDiv = false;
toggleDisplayDiv() {
this.isShowDiv = !this.isShowDiv;
}
}
Example 2:
app.component.html
<h1>Toggle a Div on Button Click Angular Example - ItSolutionStuff.com</h1>
<button (click)=toggleDisplayDivIf() >Toggle display Div If</button>
<div *ngIf="!isShowDivIf">This is ItSolutionStuff.com Div If.</div>
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'appComponent';
isShowDivIf = false;
toggleDisplayDivIf() {
this.isShowDivIf = !this.isShowDivIf;
}
}
Preview:
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Angular Webcam Capture Image from Camera Example
- Angular setInterval() and clearInterval() Example Tutorial
- Angular Material Checkbox Change Size Example
- Angular Material Mat-table Sticky Header Row Example
- Angular Bootstrap Carousel Example
- Angular Material Input Autocomplete Example
- Angular Google Maps Get Current Location
- How to Create Custom Directive in Angular?
- Angular Nl2br Pipe Example
- Angular Material Input Box Example
- Angular Ng-Container Example Tutorial
- Angular Service with Httpclient Example