I'm implementing the hybridWebView into our xamarin forms app. The problem i've come across is that the hybridWebView doesn't show the alert messages from the website that is in the webView. I've just got a simple html page which has the following js function:
function testAlert() {
alert('tester');
}
When I call this using CallJsFunction nothing occurs. I know it's firing because if i put something else in the function to say update the html on the page then it fires just fine.
Is there any properties i need to set to show alerts in the view. I know the built in Xamarin forms webview shows alerts just fine.