Zrinity is the leader in enterprise-class email marketing
management solutions and content management solutions for marketing professionals and developers worldwide.
An example of spell checking multiple fields in a form
Here's an example that places a spellcheck image next to a text field and a textarea. When the user clicks the image, the fieldname is passed to doSpell() and the form field is spellchecked.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html> <head> <title>SpellChecking a form field</title>
<script language="javascript">
function noop() {}
//called when the Check spelling button is clicked function doSpell(fieldname) { window.open("/spellchecker/window.cfm?jsvar=document.myForm." + fieldname + ".value", null, "height=230,width=450,status=no,toolbar=no,menubar=no,location=no");