Okay so I have it working for each individual. It does not seem to like me running them through though as a group
[code]
for(i=0;i<20;i++)
{
var len = document.form1["text"+i+"0"].value.length;
if (len > 0 )
{
var ch = document.form1["text"+i+"0"];
ch = ch.value.replace(/\u00C0/g,"A")...
okay if I do it that way, will see teh change on an alert right after? I still get the accented character.
var ch = document.form1["text"+i+"0"];
ch = ch.value.replace(/\xc3/g,"A");
alert(ch);
I also did
var ch = document.form1["text"+i+"0"];
ch = ch.value.replace(/\x0193/g,"A")...
Hi, I am getting textbox values after the user clicks a button. The textboxes are named text00,text10,text20 etc until text200
What I want to do is take the value of the character and see if it falls between 00192 and 00253 (like Á is 00193).
This is my code...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.