Advertisement
OlgaT-ET

Hide div on scroll down

Jul 21st, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.36 KB | None | 0 0
  1. Hi. Please assign css class (hide-on-scroll) to the fullwidth section and add this code to the Integration tab > head block:
  2. <script>
  3.   $(window).scroll(function() {
  4.  
  5.     if ($(this).scrollTop()>0)
  6.      {
  7.         $('.hide-on-scroll').css("display","none");
  8.      }
  9.     else
  10.      {
  11.       $('.hide-on-scroll').css("display", "block");
  12.      }
  13.  });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement