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