I have a jquery-mobile (1.3.1) + phonegap app in which I am using a pop-up widget (This app is for Android-any vresion). This popup is for sign-in (it has Username, Password
You can reposition a popup once an input field is focused within it.
reposition
$("#popupLogin input, #popupLogin textarea").on("focus", function () { $("#popupLogin").popup("reposition", { y: 0 /* move it to top */ }); });
Demo