Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a requirement like there should be a fixed header and footer on a page - but that page should scroll to some point on page load. I have taken this link http://jquerymobile.com/test/docs/toolbars/bars-fixed.html as a reference.

Steps which I have done:
1. I copied the code from the above link, copied everything.
2. Placed in an HTML page and adjusted the jquery links accordingly to match my files.
3. At the bottom of the page, I have placed the JavaScript code:

var timerVar;
$(window).load(function() {
 clearTimeout(timerVar);
 timerVar = setTimeout(function () {
 $('body,html').animate({ scrollTop: 100 }, 500);}, 500);
});

And for Home icon and Search icon which has been placed on Header has been changed to:

<a href="javascript:void(0)" onclick="javascript:alert('You clicked on Home icon')" data-icon="home" data-iconpos="notext" data-direction="reverse">Home</a>
<a href="javascript:void(0)" onclick="javascript:alert('You clicked on Search icon')" data-icon="search" data-iconpos="notext" data-rel="dialog" data-transition="fade">Search</a>

4. When I open the saved page in iPhone/iPad which has iOS 5.1.1, the page automatically scrolls to top till 100px. 5. After scroll, when I click on 'Home' icon - the alert which I have placed is not triggering, the links which are present behind the header are triggering. But when I scroll the page manually the Home icon link and Search icon links are working fine.

Please help me in this regard.

Conclusion: For the first time, the links which are placed in fixed header are not working at all. The links behind the header are getting triggered instead.

Please click on the link below for the screenshot [As I am a new user, it is not allowing me to post a sreenshot here]: http://www.developersnippets.com/wp-content/uploads/2012/11/jquerymobile_fixedheader.jpg

share|improve this question
Team, could you please help me on the same. – Vivekanand Kandagatla Nov 7 '12 at 18:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.