Answers for "jquery for hiding the scrollbar"

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

Code answers related to "jquery for hiding the scrollbar"

Browse Popular Code Answers by Language