Confirmation to reset form Android or iPhone
I am trying to use a JavaScript to create a dialog box asking if a user wishes to reset a form. I have the following script in use:
if(app.alert("Are you sure you want to clear this form?", 2, 2) == 4) { this.resetForm(); }
but on android or iPhone this only gives an option to tap OK which does not clear the form when you tap it. I have tried different variations of this script I have seen here and around the web. They all work properly on PC. One even adds another option on PC so I see Yes, No and Cancel, but they all don't work properly on mobile, i only get the box saying "Are you Sure you want to clear this form?" But the only tappable option is "OK" which does nothing.
im hoping someone can help me adjust the script or has a solution to make a dialog box work with the option to say yes or no
