I'm trying to access a site using embedded browser within my app, and I noticed that one major link is not responding at all when I try clicking it.
After inspecting the page html, I found the link:
<a href="javascript:doSomething()" ...></a>
How can I make WKWebview execute the javascript inside the link? I tried extending the delegate and implementing didChangeURL, but I couldn't catch it there (other url did went through the function).
I'm really out of options, is there a way to fixing this issue? native browser handle it as expected...
Thanks.