Is it possible to get input\'s value width and resize the input dynamically so the value will fit?
Here\'s an example:
http://jsfiddle.net/bzBdX/2/
$(function(){ $("input").keyup(function(){ $(this).stop().animate({ width: $(this).val().length*7 },100) }) })