I am trying to develop a chatting application using PhoneGap for iOS devices. The application has a header that shows the logged user, a footer where user can write his text
Screen Height changes when keyboard pops up
The cordova/phonegap application screen height or window.innerHeight value is getting reduced when the keyboard pops up, this re-sizes the contents inside & makes your screen look corrupted.
Using Javascript, On deviceready or Application initialize set the device screen height to your wrapper/container element.
$('#container').height(window.innerHeight); // jQuery