konstantinbueschel
5/6/2016 - 1:38 PM

Open links in browser from titanium web view, originally from: http://tiinfopot.blogspot.de/2015/03/open-links-in-browser-from-titanium-web.

Open links in browser from titanium web view, originally from: http://tiinfopot.blogspot.de/2015/03/open-links-in-browser-from-titanium-web.html

$.webview.url="http://www.w3schools.com/";

$.webview.addEventListener('beforeload', function(e) {
    if (e.url != $.webview.url) {
        e.bubble = false;
        $.webview.stopLoading();
        Ti.Platform.openURL(e.url);
    }
});