I want to hide a top header when i scroll the page in the mobile device which has social icon. page url: http://gomodemo.se/port73/ I have tried following code:
code 1.
<script>
jQuery(window).scroll(function ($) {
var Bottom = $(window).height() + $(window).scrollTop() >= $(document).height();
if(Bottom )
{
$('#header_meta').hide();
}
});
</script>
code 2.
<script>
jQuery("window").scrollDown(function($){
$("#header_meta").hide();
});
</script>