batanasov
batanasov

Reputation: 229

how to hide page info from confirmation popup (phonegap, jquery, iPhone)

I am using same code for Windows phone, Android and iPhone. There is no problem with WP and Android but when Confirmation popup appears on iPhone device I can see current page as a header of the popup. How can I remove or change this? Here is the code for my confirmation:

var conf= confirm("choose yes or no");
if(conf == true) ...

thanks in advance.

Upvotes: 0

Views: 229

Answers (1)

Dom
Dom

Reputation: 2569

Use the notification API instead of the core javascript confirm. Documentation here.

Upvotes: 1

Related Questions