I need a div to hide on body horizontal scroll I apply the below code which is working fine on vertical scroll how to apply the same code for bottom scroll ?
<script>
$(window).scroll(function () {
if ($(this).scrollTop() > 0) {
$('.nk-sidebar').fadeOut();
} else {
$('.nk-sidebar').fadeIn();
}
});
</script>