I am developing a mobile application using jQuery Mobile and Phonegap. I want to have a fixed footer and want the footer to be hidden when user clicks on a input field like a text field or textarea. I am able to get the footer position to be fixed by using the data-position="fixed"
attribute on the footer.
The issue is when I click on a text field to enter data, the footer overlaps on the input field and looks odd. I tried to use the hideDuringFocus but is of no use as it doesn't work on a fixed footer.
Has anyone else faced a similar issue?