Hi,
I have a section tag in html that is hidden,I want to unhide that when i click an image.
<section hidden class="slider_container">
In the image div i have click event:
<div id="image1" class="carousel-item active" (click)="showImage(property.Image1)"
style="background-image:url('assets/images/{{property.Name}}/{{property.Image1}}')">
<div class="container">
<p *ngIf="property.SellRent ==1">For Sale / Price:{{property.Price}}AED</p>
<p *ngIf="property.SellRent ==2">For Rent / Price:{{property.Price}}AED</p>
</div>
</div>