Embedded browser into a frame of the app

Hi all,
I have an App that opens an external URL into an embedded browser with this call:
options = "location=yes,hidden=yes"; target = "_self"; ... const browser = this.iab.create(this.mceUrl,this.target,this.options);

I’m using this Cordova plugin:
import { InAppBrowser } from '@ionic-native/in-app-browser';

This shows the site of the new Url at full screen.
The question is: is it possible to open the browser in a DIV of the app so that I can still see the header of the App?
I mean that the browser should be into a sort of frame inside the app and not at full-screen.
Thank you very much

Claudio

1 Like

I’ve done this using an “iframe”:

browser.html
<ion-content>
  <iframe *ngIf="externalLink" [src]="externalLink" width="100%" height="100%" frameborder="0" ></iframe>
</ion-content>
1 Like

thank!! it work for me :smiley: