JQuery Mobile 1.2.0 any onClick page hides a fixed footer

After setting the footer in jQuery Mobile 1.2.0, anytime I click anywhere on the page, the page footer slides down. After inspecting, I found that a class with hidden hiding is applied to the footer, but I'm not sure why.

+5
source share
2 answers

Adding the following location: position-position = "fixed" fixes the problem

data-tap-toggle="false"
+16
source

I am using the final version of PrimeFaces 5.0, which means that I am using jQuery Mobile 1.4.2.

I added data-tap-toggle = "false" as recommended here (and in many other questions here in stackoverflow), but this did not solve my header problem.

<div data-role="header" data-position="fixed" data-tap-toggle="false">

, , .

.ui-header.ui-fixed-hidden {
    position: fixed !important;
}
+4

All Articles