Hi guys,
Here's goes another lamentation of mine ...
I'm testing a simple input text such as this :
<input type=text name=text size=20 maxlength=30 onKeeUp=toUpCase(this)>
(sorry i replaced onkeyup to onkeeup, coz i cant post with the onkeyup)
where the function toUpCase is this :
function toUpCase(input) {
input.value = input.value.toUpperCase();
}
What i want is, as i type, the characters get upper-cased .. They work fine until the characters type exceeds the size of the input field (not yet exceeding the maxlength). In normal situation without the upper-casing, the input will scroll to the end of the string.
But in firefox 1.5 / netscape 7.1 i used, it doesnt scroll, the text get appended to the last string but the last char is not visible. (omigosh, so hard explaining it

)
My friend said that it works fine on IE ..
Pls helppp ...