I'm trying to reproduce a particular bug on a particular device (it's a tablet).
The bug is reproduced when I use alert()
, prompt()
and confirm()
.
I'm looking for a similar functions. Looking at the three functions above, their similarities seem to be
- They pause execution,
- They occupy the entire screen (by opening a modal), and
- They're built-ins and don't require extra libraries, etc., to run.
A Google search didn't show up any results besides these three.
I did find this question, which could be useful (haven't tried it out yet).