I'm using a footer with the
data-position="fixed" attribute, now, I understand that the way to keep the position fixed when changing pages is to remove the <div data-role="footer"> element from the <div data-role="page>
and appending it to the <body> element itself;
What I've failed to understand is at what time is it appended back to the page?
I was debugging through "pageshow" and I saw that at that point the footer is still a part the body and not the page I was transferred to.
Say I want to manipulate something there when before the user can interact w/ the page, is the only to do so is getting to the footer that's a part of the body?