Visit website always open in-app view

adam4369

New Member
some rss feed need to be opened in system browser like opera,Firefox,chrome i tried lots the option
"Open in Default Browser:" but working
always url open in app webview even i tried http & https in rss link
is there are additional things to force "Visit website" button to open in other browsers
 

adam4369

New Member
8 days and no any replay
i have tested this but not working sill all links open in-app web view only ,any help

<script>
function myFunction() {
var a = document.getElementsByTagName("a");
for(i = 0;i < a.length; i++)
{
a.setAttribute("onclick", "return !window.open(this.href, 'somesite', 'width=500,height=500')");
}
}
</script>
<script>
//call after page loaded
window.onload=myFunction ;
</script>
 

adam4369

New Member
if the rss feed you use got policy violation ! you will got "Violation of Device and Network Abuse policy" too becouse the web page open into your app as an i frame in html so necessary visit website button open in external browser not in-app webview
@appyet
 
Top