vanilla javascript stoppropagation code example
Example 1: angular stoppropagatio
import {Directive, HostListener} from "@angular/core";
@Directive({
selector: "[click-stop-propagation]"
})
export class ClickStopPropagation
{
@HostListener("click", ["$event"])
public onClick(event: any): void
{
event.stopPropagation();
}
}
Example 2: event.stoppropagation
event.stopPropagation();