Hi I have developed android phonegap app which is responsive.So when keyboard is visible i need to hide the footer in portrait and landscape mode and keyboard is not visible i n
I think your best bet is to register for the show and hide keyboard events.
document.addEventListener("showkeyboard", function() { $("#footer1").hide(); }, false); document.addEventListener("hidekeyboard", function() { $("#footer1").show(); }, false);