Froala Editor
Prerequisites
Choose your integration method
Method
Best for
Script-based integration
Using init() for immediate activation
<script>
window.WEBSPELLCHECKER_CONFIG = {
autoSearch: true,
autoDestroy: true,
serviceId: 'your-service-ID'
};
</script>
<script src="https://svc.webspellchecker.net/spellcheck31/wscbundle/wscbundle.js"></script>
<div id="froala-editor">
<p>Your text here.</p>
</div>
<script>
new FroalaEditor('#froala-editor', {
iframe: true,
events: {
'initialized': function() {
WEBSPELLCHECKER.init({
container: this.$iframe ? this.$iframe[0] : this.el
});
}
}
});
</script>NPM SDK integration
Remove other spell checkers
What's next
FAQ
Does Froala have a dedicated WProofreader plugin?
What's the difference between WProofreader and Froala's built-in spell checker?
Why does the init() example check for this.$iframe?
Last updated
Was this helpful?

