I am looking to implement a feature where clicking on an icon will resize a div to full screen in the browser. Below is the HTML code I have set up for this functionality, and I am open to suggestions on how to achieve this.
<div>
<a (click)="onResize($event)" class="icon-resize"></a>
</div>
The specific HTML element I want to expand is as follows:
<div id="editview">
<iframe id="editFrame"></ifram>
</div>
public onResize(event:any) {
event.target.innerWidth;
}