I'm using some 'elastic' text inputs on an HTML form. Each elastic input has a function attached on keyup that adjusts the size of the input to equal the number of characters in the input.
This works great in Chrome - the input expands as I add or remove text just as I'd expect.
It works pretty well in Firefox, but it's suboptimal. If I type quickly, the leftmost characters scroll to the left of the input border, and FireFox never resets this position. This leaves me with some characters cut out of view on the left side of the input value, and with blank space on the right side of the value.
Is there anyway to force FireFox to reset the horizontal scroll of a text input?
Edit:
Also, you can see this quite well if you paste a large amount of text into the input. In Chrome, it works great. In FireFox, a large amount of the leftmost text is not displayed, although the input size is big enough to accommodate it.