Reply To: send message from JS not working on some ios devices

Welcome! Forums Unity Plugins In-App Web Browser send message from JS not working on some ios devices Reply To: send message from JS not working on some ios devices

#577
mirimad
Participant

Yes I did. You can see the html code I gave above.

Here is the C# code inside my app:

public void OnMessageFromJS(string jsMessage) {
		//InAppBrowser.OpenURL ("https://google.com?query=" + jsMessage);
		if (jsMessage.Equals ("Go Home")) {
			InAppBrowser.CloseBrowser ();
			SceneManager.LoadScene ("home");
		}