I am developing an Application using Phonegap on Android. Everything works fine on OS 2.1 but on OS 2.2 when we click on any input type text field the keyboard appears and whole
You might have to enable this script to avoid your app scrolling when your text input field gets focus :)
function preventBehavior(e) { e.preventDefault(); };document.addEventListener("touchmove", preventBehavior, false);