Testing for Ajax compatibility

Ajax is an emerging technology - and its not compatible with all web browsers.

To avoid embarrassing mistakes - JavaScript SpellCheck can tell you weather the user's web browser is Ajax compatible.

ajaxEnabled returns true or false

Example

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

var oSpell = new JavaScriptSpellCheck();

if (oSpell.ajaxEnabled)
{
   alert('Ajax is Available')
}
   else
{
   alert('Ajax is not Available')
}


</script>