Wednesday 4 March 2015

Open links in browser from titanium web view

$.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);
    }
});

1 comment:

  1. https://github.com/raulriera/Rater-Module/blob/master/rater.js

    ReplyDelete