The Instagram app has a nice sticky header that pushes the current one up in place of the new one. I found a great tutorial on how to do this natively for Android, but I\'m
This doesn't always work well if there's content above the div with the sticky headers:
$thisSticky.css('transform', 'translateY(' + $newPosition+ 'px)');
But this line does the trick
//could just as easily use top instead of transform
$thisSticky.css('top', $newPosition+ 'px');