I make a (very) small page that is used by speech and language therapists to count stuttering in a speech. For each syllable, they press the "Syllable" button, and for each stutter they press the "Stutter" button.
The intended use is on an Android tablet. I have all the code working (using jQuery). It works great on a computer. The problem is that you need to click quickly (once for each syllable). And when you quickly click on the Android browser, it scales and disappears and goes crazy.
So, is there a way to make the page a fixed width, so there's no need to zoom in and out, or is there another way to tell Android 4.0 not to do this double-click action.
Here is my code. I omitted jQuery and the head as I think it does not matter. But you can see how small the page is.
... <body> <h2>Stutter Count</h2> Syllables: <span id="s-count">0</span> <br> Errors: <span id="e-count">0</span> <br> Percent Errors: <span id="all-p-count"><span id="p-count">0</span>%</span> <br><br> <input type="button" value="Syllable" id="s-button"> <input type="button" value="Error" id="e-button"> <input type="button" value="Reset" id="reset"> </body> </html>
EDIT: My code is here: http://www.duncannz.com/pages/stutter-count.php (for the desktop) or http://www.duncannz.com/pages/stutter-count.php?mobile=1 (for mobile phones / tablets)
source share