I have created my view (wrapped in a window) and loaded an URL like this:
self.web_view = WebKit2.WebView()
self.web_view.load_uri("https://en.wikipedia.org")
My "Mini-Browser" starts and I can click on local links (links which are bound to JavaScript events or links to other pages on the same domain). But when the links point to other domains, nothing happens. How do I catch clicks on external links? Or how can I open these links in the system default browser?
UPDATE: Cross site links are not handled by the "Mini-Browser". Can I write an event hook(onclick) to interrupt the "Mini-Browser" and act based on custom logic or is there a way to configure cross-site links.