Linked Questions
13 questions linked to/from Hide scrollbar while still being able to scroll with mouse/keyboard
54
votes
7
answers
42k
views
How can I disable a browser or element scrollbar, but still allow scrolling with wheel or arrow keys?
I want to hide any scrollbars from my div elements and my whole body, but still let the user scroll with the mouse wheel or arrow keys. How can this be achieved with raw JavaScript or jQuery? Any ...
3
votes
1
answer
35k
views
How to hide scrollbar but still can scroll up/down [duplicate]
Is there a way on how to hide scroll bar and still can scroll up down using mouse or direction keys?
Any one can help?
0
votes
1
answer
3k
views
hiding scroll bars when using overflow:scroll; but keep scrolling ability [duplicate]
Possible Duplicate:
hide scrollbar while still able to scroll with mouse/keyboard
I've made a piece of UI for a web app. It's a side bar and it needs to let the user scroll through it without a ...
0
votes
3
answers
4k
views
How to hide the vertical scroll bar of a web page? [duplicate]
I want to hide the vertical scroll bar.
But the mouse wheel or keyboard are still available.
844
votes
22
answers
2.0m
views
Hiding the scroll bar on an HTML page
How to use CSS to hide the scroll bar?
36
votes
8
answers
107k
views
How to hide the scrollbar using JavaScript
How can the scrollbar be hidden? I want to do this because the scrollbar is not nice.
overflow:hidden is not useful, because my div element has many other elements.
So setting overflow does not ...
28
votes
4
answers
59k
views
can't hide scrollbar when using overflow: auto
I have this CSS:
.div {
background-color: red;
position: relative;
height: 414px;
overflow: auto;
width: 902px;
margin: 0px auto;
}
I tried with overflow-y: hidden;, scrollbar ...
5
votes
4
answers
26k
views
Hide the scrollbar but keep the ability to scroll with native feel
I've searched for an answer to this question and came across
hide scrollbar while still able to scroll with mouse/keyboard but the jQuery plugin doesn't quite do what I'd like to do. For one, the ...
0
votes
1
answer
20k
views
Building scrollable div without scrollbar
I am trying to build a dynamic scrollable menu without scrollbar. I followed the example at Stackoverflow, but still scrollbars are appearing. How can I get rid of the scrollbars? My code is at ...
2
votes
1
answer
2k
views
Parallax background position in window calculation
Can somebody please help me with what first appeared a simple function, but now has me pulling my hair out?
I am using a pretty simple chunk of jQuery that is binding to the window scroll function. I ...
1
vote
2
answers
3k
views
How to hide horizontal bar scrollbar but keep scroll function
I see lots of answers for hiding the scrollbar by using
overflow-y: scroll;
and pushing the scrollbar away. But how would you achieve this for horizontal scrolling?
0
votes
1
answer
773
views
Scrolling with hiding scroll bar [duplicate]
I try to create a page where scroll bar is hidden but you still can scroll or click on links to scroll down. I can hide scroll bar but I can't scroll with leaving a page on 100%.
Html
<!...
-1
votes
2
answers
349
views
How to hide window scrollbar and make scrolling still working [duplicate]
I want to hide window scrollbar and I used this css style
body { overflow: hidden; }
but the problem here is the srcolling is disabled as well !
So, How to hide window scrollbar and make scrolling ...