I have a problem and I can\'t figure out what exactly is causing this behavior. I cannot access my input fields and textareas on my HTML form.
textarea
Unfortun
If you are faced this problem while using canvas with DOM on mobile devices, the answer of Ashwin G worked for me perfectly, but I did it through javascript
Ashwin G
var element = document.getElementById("myinputfield"); element.onclick = element.select();
After, everything worked flawlessly.