iOS WKWebview not responding to clicks events on <a href="javascript:doSomething()" ...></a>

922 Views Asked by At

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.

1

There are 1 best solutions below

2
On

Unless there's a reason you're using link javascript, I expect you'll get more consistent performance across the board if you just used onclick on a regular div, and then styled it to look like a link.

Or, even better, avoid handlers in the markup in general: Better way to call javascript function in a tag