ajaxSpellCheck(strInput)

The ajaxSpellCheck function automates an Ajax interface with the spellchecker engine.

ajaxSpellCheck is useless until integrated with the ajaxCallBack event function.

Read More...

Note: the users web browser must have Ajax compatibility for this function to work. Otherwise it will return null.

Example

<script src="/JavascriptSpellCheck/Include.js" type="text/javascript"></script>

<script>

oSpell.ajaxCallBack=function(result){
   alert (result);
}

oSpell.ajaxSpellCheck('Any string or variable you like')

</script>