Hi.
I have a javascript in my webpage and I have a function called ( HelloUnity ). How could I call that function from my webpage and show the string message into my html5 game ? What is the best way ?
myPage.js
function HelloUnity()
{
var text = "HELLO";
}
Thank You