I have an application loaded at 100% in WebView
, I put the link where it has the application and the whole application is via web in php.
Only you have links that are not part of the page that are external links (example www.google.com.br
) and would like it to open in the browser itself and not within WebView
My attempt:
<a href="https://www.google.com.br" target="_blank"> busca </a>
But it opens within the WebView
itself, I would like only the links from the application web pages to load inside the 'WebView and external links to be loaded out.
Is this possibility possible? Where do I have to change to get this result?