Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kryles

    Replacing characters with accents (french characters)

    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")...
  2. kryles

    Replacing characters with accents (french characters)

    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")...
  3. kryles

    Replacing characters with accents (french characters)

    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...

Part and Inventory Search

Back
Top