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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

spell checking?

Status
Not open for further replies.

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
 
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,&quot;^&quot;);
stux1=stuxxx.replace(/\n/g,&quot;^&quot;);
openfile='
POP = window.open( openfile, &quot;WIN_SUB&quot;, &quot;menubar=0,toolbar=0,location=0,directory=0,scrollbars=1,resizable=0,width=600,height=410&quot;);

}
</script>

<TEXTAREA NAME='TestResults' COLS=50 ROWS=8></TEXTAREA><Input type=button value='Spell Check' onClick=spellx()>


Kris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top