BorisD
BorisD

Reputation: 2261

Titanium Appcelerator - fireEvent to the Webview

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

Answers (1)

JeffAtStepUp
JeffAtStepUp

Reputation: 405

webview.addEventListener('beforeload', function() {
    webview.evalJS('var foo='my data;');
});

Upvotes: 1

Related Questions