On 02/02/2014 00:34, Ray_Net wrote: > Daniel wrote, On 01/02/2014 02:15: >> On 01/02/14 09:26, hawker wrote: >>> For some very odd reason when I use Outlook Web Service (web based >>> exchange server) the spell check as you type does not work in Seamonkey. >>> It works fine on other web sites. Any idea why this is and what I can do >>> to fix this? >> >> Hawker, I don't know if it's related, but there have been problems >> with "spell check as you type", i. e. check out bugs >> https://bugzilla.mozilla.org/show_bug.cgi?id=585427 and >> https://bugzilla.mozilla.org/show_bug.cgi?id=920716, so it might be >> worthwhile switching to "spell check prior to sending". >> > I don't understand why "It works fine on other web sites" ... if it > works on other web sites - SM in not the culprit.
https://developer.mozilla.org/en-US/docs/XUL/textbox#a-spellcheck The spellcheck attribute uses values of true or false (you cannot simply add the spellcheck attribute to a given element): <!-- spellcheck everything! --> <input type="text" spellcheck="true" /><br /> <textarea spellcheck="true"></textarea> <div contenteditable="true" spellcheck="true">I am some content</div> <!-- spellcheck nothing! --> <input type="text" spellcheck="false" /><br /> <textarea spellcheck="false"></textarea> <div contenteditable="true" spellcheck="false">I am some content</div> You can use spellcheck on INPUT, TEXTAREA, and contenteditable elements. Thespellcheck attribute works well paired with the autocomplete, autocapitalize, and autocorrect attributes too! -- -==- Philip Chee <[email protected]>, <[email protected]> http://flashblock.mozdev.org/ http://xsidebar.mozdev.org Guard us from the she-wolf and the wolf, and guard us from the thief, oh Night, and so be good for us to pass. _______________________________________________ support-seamonkey mailing list [email protected] https://lists.mozilla.org/listinfo/support-seamonkey

