1
function changeHeaderPosition() {   
  $('.header-menu').css('top', window.innerHeight + window.scrollY - 44 + "px");
}

$(document).bind('scroll', function() {
  changeHeaderPosition();
});

This code place header-menu div to bottom. How to place on top of page when scroll in ipad.

Thanks in advance

Gee Nino
  • 11
  • 2
  • i guess this would help you,http://stackoverflow.com/questions/17150959/how-does-one-get-a-fixed-header-to-stay-at-the-top-of-the-page – dreamweiver Aug 31 '13 at 07:40

0 Answers0