reposition popup when focusing on an input (when keyboard slides up in android).
I have this problem every time i choose an input text that is located inside the popup, and this input text get the focus, The keyboard slides up and than i see just half of my popup.
I've tried to do:
$("#popupNested input, #popupNested textarea").on('focus', function () {
$("#popupNested").popup("reposition", {positionTo: 'window'});
});
but this is been triggered only after pressing on the enter key on my keyboard.