Expected behavior
I have one page which contains one form, when the user want to leave this page, actually it is just one component, I want show some alert like "Do you really want to leave this page? Your changes will not be saved".
Currently behavior
I have tried
@HostListener('window:beforeunload', ['$event']) yourfunction($event) {
return $event.returnValue='Your changes will not be saved';
}
But the dialogue didn't appear.
Any ideas or suggestions will be welcomed.