I have succesfully forced uppercase but, I can't get the field I force to Identify the correct Field. Here is my script:
<tr>
<b>Locate:</B> <TD><input type="text" onkeyup="this.value=this.value.toUpperCase()"
name="Locate" height="30" size=35 maxlength=45></TD>
</TR>
This is a "locate" field that when the first few letters are typed in the field the tab key can be hit to search for the typed letters. As of now when I hit the tab key it just moves the cursor and does not locate as it did succesfully before I put in the Force Uppercase script in. What am I missing?
<tr>
<b>Locate:</B> <TD><input type="text" onkeyup="this.value=this.value.toUpperCase()"
name="Locate" height="30" size=35 maxlength=45></TD>
</TR>
This is a "locate" field that when the first few letters are typed in the field the tab key can be hit to search for the typed letters. As of now when I hit the tab key it just moves the cursor and does not locate as it did succesfully before I put in the Force Uppercase script in. What am I missing?