I am making a website using jQuery Mobile.

How to keep jquery mobile header and footer fixed? I just want only the content to scroll(just like it happens in iPhone applications), and keep the headers and footers fixed at top and bottom.

Any suggestions ?

link|improve this question
feedback

6 Answers

Add this attribute to your header/footer div:

        <div data-role="header" data-position="fixed">
            <h1>Header Page 1</h1>
        </div>

Also, you might have a look at this: http://jquerymobile.com/test/docs/toolbars/footer-persist-a.html

link|improve this answer
feedback

The issue I had with jquery mobile fixed is that the header and footer fade. I imagine this is something that they will correct in the future but in addition to iscroll suggested by Dan, there is also jquery mobile scrollview and wink toolkit. I had good results with jquery mobile scrollview but no luck with iscroll or wink

1) Jquery mobile Scrollview

2) Wink Toolkit

link|improve this answer
Did anyone test this on an iOS device; because for me the screen is just stuck and when i keep swiping, eventually the toolbars stills fade in/out... I'm specifically talking about Jquery mobile. – CharlesS Aug 31 '11 at 17:42
I used jquery mobile scrollview on iOS. It worked fine. That being said, I eventually switched to sencha touch. Jquery mobile performance was too poor (delay with every button click) and lacked essential controls. Perhaps it has improved now. It is definitely more fun to program with. – i8abug Sep 1 '11 at 2:55
2  
If you bind to "tap" and "touchstart" events instead of "click," the delay goes away. – Crashalot Nov 23 '11 at 22:47
feedback

Another option is check out iScroll: http://cubiq.org/iscroll

link|improve this answer
feedback

Another way is to use http://jquerymobile.com/test/experiments/scrollview/scrollview-direction.html (jquery.mobile.scrollview.js, scrollview.js, and easing.js) and put data-scroll="true" in the page div tag as suggested here: scrollview for jQuery mobile tollbars *not* to be fixed .

Worked well for me thus far.

Cheers,

E

link|improve this answer
feedback

Use iScroll v4. Keep header and footer fixed and scroll only the content. iScroll needs a wrapper DIV and child element. In the example below the content_items is the child div with the items to scroll. I noticed that you can not combine the data-role="content" and the wrapper DIV for iScroll in one HTML element!.

<script type="text/javascript">
var myScroll;

$(document).ready(function () {

    myScroll = new iScroll('wrapper');

});

</script>
<div data-role="page"> 
    <div id="header" data-role="header" data-position="fixed"></div>
    <div id="content" data-role="content" class="contentcontainer contentsearched">
        <div id="wrapper">
            <div id="content_items" class="content_items"></div>
        </div>
    </div>
    <div id="footer" data-role="footer" data-position="fixed">
        <div data-role="navbar"></div>
    </div> 
</div>
link|improve this answer
feedback

i recommend you try the latest jquery-mobile version (1.1.0-rc). it fixed this bug.

have a look here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.