callBack

After the SpellCheck Window is finished spell checking, a callBack event is triggered.

By setting the value of the callBack function, you can customize what happens at upon this even. The callBack function has no arguments.

Read More...


Example

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

<script type= "text/javascript">

myCallBack = function() {
  alert('SpellCheck is Complete"')
}
oSpell.callBack=myCallBack

</script>