I want to change the color of the scroll bar only when the user scrolls the screen. I tried the code below but it did not work. How do I?
$('body').scroll(function(){
setTimeout(function(){
$("body::-webkit-scrollbar").css("background-color", "#333");
console.log('fsdfs');
},500);
});