You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi, i feed the webview from an html source, how can i capture the tap on a link event to open the link with an external browser?
i've seen the various functions like
function handleEventFromWebView(){
oWebViewInterface.on('anyEvent', function(eventData){
// perform action on event
});
}
function emitEventToWebView(){
oWebViewInterface.emit('anyEvent', eventData);
}
function callJSFunction(){
oWebViewInterface.callJSFunction('functionName', args, function(result){
});
}
i think i could use one of them, but how capture the 'tap on link' event (ios and android)? thank you
The text was updated successfully, but these errors were encountered:
hi, i feed the webview from an html source, how can i capture the tap on a link event to open the link with an external browser?
i've seen the various functions like
function handleEventFromWebView(){
oWebViewInterface.on('anyEvent', function(eventData){
// perform action on event
});
}
function emitEventToWebView(){
oWebViewInterface.emit('anyEvent', eventData);
}
function callJSFunction(){
oWebViewInterface.callJSFunction('functionName', args, function(result){
}
i think i could use one of them, but how capture the 'tap on link' event (ios and android)? thank you
The text was updated successfully, but these errors were encountered: