Oct 17, 2002 #1 JazzLeg Programmer Aug 22, 2002 63 GB Hi, Is there some sort of spell checking function I could get my hands on to check entries in a textarea of a form???? Thanks
Hi, Is there some sort of spell checking function I could get my hands on to check entries in a textarea of a form???? Thanks
Oct 17, 2002 #2 krisbrixon Programmer May 10, 2002 371 US I heard that you can use microsoft's office spell checking ability's but I have never tried. What I use is: <script language=javascript> function spellx(){ stuxx=document.FORM1.TestResults.value; stuxxx=stuxx.replace(/\r/g,"^" stux1=stuxxx.replace(/\n/g,"^" openfile='http://www.weliveforever.com/newspell.cgi?stuff='+stux1; POP = window.open( openfile, "WIN_SUB", "menubar=0,toolbar=0,location=0,directory=0,scrollbars=1,resizable=0,width=600,height=410" } </script> <TEXTAREA NAME='TestResults' COLS=50 ROWS=8></TEXTAREA><Input type=button value='Spell Check' onClick=spellx()> Kris Upvote 0 Downvote
I heard that you can use microsoft's office spell checking ability's but I have never tried. What I use is: <script language=javascript> function spellx(){ stuxx=document.FORM1.TestResults.value; stuxxx=stuxx.replace(/\r/g,"^" stux1=stuxxx.replace(/\n/g,"^" openfile='http://www.weliveforever.com/newspell.cgi?stuff='+stux1; POP = window.open( openfile, "WIN_SUB", "menubar=0,toolbar=0,location=0,directory=0,scrollbars=1,resizable=0,width=600,height=410" } </script> <TEXTAREA NAME='TestResults' COLS=50 ROWS=8></TEXTAREA><Input type=button value='Spell Check' onClick=spellx()> Kris