jQuery Spellcheck Plugin Demos

There are four divs below with varying overlaps. Below the boxes are a few buttons that will execute the example code and alert the results.

Spellchecker Examples
Check Spelling

Here is the code for this demo.

jQuery(function($) {
    $('#example1').spellcheck({ events: null });
    $('#example2').spellcheck();
    $('#example3').spellcheck({ events: 'keyup' });
    $('a.checkspelling').bind('click', function(event) {
        $(this.hash).checkspelling();
        this.blur();
        return false;
    });
});