Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Learn More

How to disable the number scrolling in textbox, because this will put wrong numbers in textbox when we scroll without looking.

  • 4 svar
  • 1 har detta problem
  • 2 visningar
  • Senaste svar av venuhs4

more options

While putting numeric value in textbox and scroll down the page without seeing the number will change because for textbox focus. which is really annoys me even though it is a good feature. It will be good if I can disable scrolling. Even though I love Firefox I switch to Chrome for only this useless reason.

While putting numeric value in textbox and scroll down the page without seeing the number will change because for textbox focus. which is really annoys me even though it is a good feature. It will be good if I can disable scrolling. Even though I love Firefox I switch to Chrome for only this useless reason.

Alla svar (4)

more options

Well, I don't know how Chrome handles stuff like that, but have you considered using the Tab key to advance to the next text area on the form page?

more options

Well, We can use the Tab for loosing textbox focus and submit. But I sometime scroll-down and submit using mouse. Ok if we do not have a feature to disable then I will start using tab.. Thanks...

more options

You would have to make sure that you place the mouse in a positions that you won't touch such an input field (not in the middle of the page).


You can add code to the userContent.css file to hide the spinner and make the field behave as a normal input field.


input[type="number"] {-moz-appearance:textfield !important;}

It is not that difficult to create userContent.css if you have never used it.

The first step is to open the "Help -> Troubleshooting Information" page and find the button to access the profile folder.

You can find this button under the "Application Basics" section as "Profile Folder -> Open Folder". If you click this button then you open the profile folder in the Windows File Explorer. You need to create a folder with the name chrome in this folder (name is all lowercase). In the chrome folder you need to create a text file with the name userContent.css (name is case sensitive). In this userContent.css text file you paste the text posted.

In Windows saving the file is usually the only time things get more complicated because Windows can silently add a .txt file extension and you end up with a file named userContent.css.txt. To avoid this you need to make sure to select "All files" in the dialog to save the file in the text editor using "Save File as".

You need to close and restart Firefox when you create or modify the userContent.css file.

more options

yeah great! Now the text box do not have scroll up/down buttons. But the numbers are still getting changed when I scroll. I think we are missing to disable another property.