I am using iframe to show payment of my another website, the issue I am facing is that (load) is being called twice, when it starts to load and after it fully loads, and I want to show loader until it fully loads
<div class="position-relative">
<iframe
[src]="url"
frameborder="0"
(load)="onLoad($event)"
></iframe>
<div class="close-button" (click)="onClose()"><i class="btn-close"></i></div>
<app-loader-iframe></app-loader-iframe>
</div>
onLoad(event: Event) {
this.loaderIframeService.isLoading.next(false);
}