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:

Reduced JSFIDDLE Example here

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.

link|improve this question

Could you post your current html and JavaScript/jQuery, so we can see what you're working with? And a live demo would be incredibly useful, at either JS Fiddle, or JS Bin (among others, presumably). – David Thomas Feb 17 '11 at 1:40
I'm not sure setting "size" is the right way to do this. I'd use css width instead. – Christian Feb 17 '11 at 13:39
as a workaround, you can set this: $(theTarget).attr('size', myTextLength+2); the input will be 2 chars larger, but the warps will be very rare. Anyway, I woudlnt qualify the 'elastic' way it looks in chrome great. – BiAiB Feb 17 '11 at 13:44
@Christian: You think, or you know? I've just tried with CSS width, and I still have a problem with FireFox scrolling off to the left in some cases (especially paste or typing very quickly). Size should be fine since I'm using a fixed-width font. – Tex Feb 17 '11 at 13:50
@BiAiB: I've already tried that. It's better, but still not perfect. It's still possible to get text to scroll off to the left of the input. Keep in mind, the fiddler version is a reduced version, so you're not seeing what it actually looks like in the app. – Tex Feb 17 '11 at 13:55
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.