Does anyone know if there is a way to disable the horizontal scrollbar using JavaScript?
I don’t want to use overflow-x: hidden;.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Without using the perfectly workable
overflow-xCSS property, you could resize the content to not require a scroll bar, through javascript or through HTML/CSS design.You could also do this:
… which will detect any scrolling and automatically return the scroll to the top/left. It bears mentioning that doing something like this is sure to frustrate your users.
You’re best served by creating an environment where unwanted UI elements are not present at all (through the CSS, through design). The approach mentioned above shows unnecessary UI elements (scroll bars) and then causes them to not work in a way that the user expects (scroll the page). You’ve “broken a contract” with the user – how can they trust that the rest of your web site or application will do expected things when the user makes a familiar action?