You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried this method to no avail. The text that loads initially in the div can be read just fine, but even with an event that fires on blur, some words typed after page load will never be checked and some will be fine.
function typer() {
$('#spellCheck').off('blur', speller).on('blur', speller);
}
// Bind spellchecker handler functions
spellchecker.on('check.success', function() {
alert('There are no incorrectly spelled words!');
});
function speller()
{
// Check the spelling when user clicks on button
$("#check-spelling-button").off('click').on('click', function(e){
spellchecker.check();
});
}
The text was updated successfully, but these errors were encountered:
"just use a
I've tried this method to no avail. The text that loads initially in the div can be read just fine, but even with an event that fires on blur, some words typed after page load will never be checked and some will be fine.
The text was updated successfully, but these errors were encountered: