Answers for "hide menu on scroll down and show on scroll up jquery"

CSS
0

jquery hide scrollbar but allow scrolling

/*For Webkit browsers e.g Chrome, Opera,Edge and safari*/
*::-webkit-scrollbar{
  display: none;
}
/*For firefox */
body{
  scrollbar-width: transparent;
}
Posted by: Guest on September-21-2020

Browse Popular Code Answers by Language