Post

Replies

Boosts

Views

Activity

Reply to iOS Safari/WKWebView Unexpected EOF When Parsing Javascript
In my case, I use. webview.evaluateJavaScript("") method can not use other third party javascript like jquery,angular so i use window.postMessage('','') like this webview.evaluateJavaScript("window.postMessage('param', '*')") and in html file, window.addEventListener("message", function(event) {     fn_start(event.data)   }); to solve this problem. hope help other people.
Jan ’21