Reputation: 2261
Is there any possible way to fire event to the Webview before he is loaded, and change some of his parameters?
Upvotes: 1
Views: 909
Reputation: 405
webview.addEventListener('beforeload', function() {
webview.evalJS('var foo='my data;');
});
Upvotes: 1