i want to develop a application where i need to to use side menu and inapp browser .User must navigate to pages using side menu where the pages will be opened in inapp browser . is it possible? thanks in advance
You can load it inside an iframe
i want execute css,js after it loads . and also i want to show spinner on every click … is it possible in method you mentioned ?
your external site will load inside ion-view with the help of iframe which will keep your sidemenu and header intact.
Something like
<ion-view title="sample page">
<ion-content>
<iframe src="https://www.youtube.com/embed/eCfDxZxTBW4"></iframe>
</ion-content>
</ion-view>
but, with iframe you have to take care of X-Frame Options header, which most sites don’t allow by default.