I have two pages: http://localhost:4200/text and http://localhost:4200/wizard
I have a button on the wizard page as follows in the wizard.html:
<body>
<button (click)="clear();">Clear</button>
</body>
In the wizard.component.ts file I have the clear function:
clear(): void{
//Here I wanted to refresh the http://localhost:4200/text page on the button click.
}
I wanted to refresh the http://localhost:4200/text page on button click. The current wizard page should still be open without any change. I tried out location.reload(); and window.location.href=window.location.href but didn't work.
Can somebody help me with this? Thanks in advance!