I'm using JQueryMobile for my mobile site. I've got a fixed footer that hides and shows when you press the "Share" button. It then disappears when you start scrolling. I've also got comment boxes.
To recreate the error: [removed] (use a mobile device or sim)
You'll see the footer briefly appear, and then it drops to the bottom of the page. If you click on 'Share' while still focused on the textarea, the footer just doesn't appear at all.
You can recreate what I WANT to happen by simply clicking on the 'Share' button as soon as the page loads.
What's going on there and how can I fix it? I've tried to do various things upon text unfocus, but I can't get anything to work.
I've hacked a fix for this by not hiding the footer upon focus. It's not a perfect solution, it might be a bug in JQuery.
$("[data-role=footer]").fixedtoolbar({ hideDuringFocus: "input, select" });