i want to get the point when开发者_JAVA百科 the textbox start hiding the character to the left side hw is it posible in javascript
You would get the width of the textbox, approximate the width of a char, and when (char_amounts * char_width > textbox_width)
, you got yourself an overflow.
精彩评论