That's how the alert(..) API works. It's a standard browser API.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
That's how the alert(..) API works. It's a standard browser API.
This doesn't show up on the Android App or tester. Also, I have not seen this on other iPhone Apps. Is this an artifact of the Appery system that we just have to live with?
Hello! This should help http://stackoverflow.com/questions/94...
Awesome Maryna. The information on that page worked. Thanks!
code
navigator.notification.alert(
"This is my Alert text!",
callBackFunctionB, // Specify a function to be called
'Alert Title',
"OK"
);
function callBackFunctionB(){
console.log('ok');
}
/code