Is it possible if i have a button that when it clicked, it will open a new tab in browser that binds the same component and variables that declared before?.
<label>Please Enter Your Email Below</label>
<input name="userEmail" type="text" class="form-control" required ngModel />
<button type="button" class="btn btn-sm" (click)="verifyEmail(emailVerification.value); isClicked=!isClicked">verify</button>
<!--is it possible to open/redirect this div in a new tab?-->
<div *ngIf="isClicked">
<form>...</form>
</div>
<!--end of div-->