How can I display an external url within the app?

I need to be able to display a website while staying within the app. I know that using an iframe is a common solution, but the problem is that many of the website that I need to be able to display e.g. New York Times, can’t be displayed in any of the iframes I’ve looked at. Is there any other solution?

Yest you tried with open a external website in New tab by use of javascript

Example:

<script type="text/javascript">
function OpenWindow() {
    window.open('externalurl,
                'newwindow',
                config='height=670,width=1400,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no');
}
</script>
2 Likes

This topic was automatically closed after 70 days. New replies are no longer allowed.