show and hide browser scrollbar jquery code example
Example: 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;
}