Update to Spelling Integration
After testing out the spelling implementation we found that we were having issues with html tags and other unique characters. We couldn't even get it to send to our action page.
So we did some research and decided to encode the text string in the javascript and this worked nicely.
So we replaced the
return 'textstring=' + text;
}
with
return 'textstring=' + encodeURIComponent(text);
}
And had success. A lot of our blog entries have code and interesting characters and we have not had any issues so far but of course we will keep you posted on any other issues we have.
If you would like to research more of the capabilities of the encodeURIComponent() function this page Comparing escape(), encodeURI(), and encodeURIComponent() was very useful. It certainly saved us here!

There are no comments for this entry.
[Add Comment]