I am creating an angular application.
In that, I want to open the child window. and also want to do communication between parent and child browser.
I am creating an angular application.
In that, I want to open the child window. and also want to do communication between parent and child browser.
Try to this:
window.open('url', '200', '200');
another way
<a [routerLink]="['/your-component']" target="_blank">
Open other component in new tab.