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
December 19, 2017 at 5:38 am
#577
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");
}