Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

3.1. Contenteditable DIV Element

code
Warningcode
iconlanguagefalse
js
<div contenteditable sc_dojoType="scayt.ui">
    This is an exampl of a sentence with two mispelled words.
    Just type text with misspelling to see how it works.
</div>


Code Block
languagejs
themeEmacs
<div contenteditable id="container1">
    This is an exampl of a sentence with two mispelled words.
    Just type text with misspelling to see how it works.
</div>
 
<script>
    var instance1 = new SCAYT.SCAYT({
        container: document.getElementById("container1"),
        autoStartup: true,
        spellcheckLang: 'en_US',
        serviceProtocol: 'https',
        serviceHost: 'svc.webspellchecker.net',
 	    servicePort: '443',
        servicePath: 'spellcheck31/script/ssrv.cgi',
	 customerId: 'customerId_value'
    });
</script>

...