Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Spell checker only works on specific text boxes

  • 6 个回答
  • 0 人有此问题
  • 8 次查看
  • 最后回复者为 cor-el

more options

Hey!

I'm working on a translation management software called Plunet.

There are text boxes within Plunet where the spell checker does work, and others in which the spell checker is not even an option. It doesn't recognize misspelled words by underlining them in red, and when I right-click on words, the only option available is "Link". (See screenshot.) Any ideas?

Thanks!

Hey! I'm working on a translation management software called Plunet. There are text boxes within Plunet where the spell checker does work, and others in which the spell checker is not even an option. It doesn't recognize misspelled words by underlining them in red, and when I right-click on words, the only option available is "Link". (See screenshot.) Any ideas? Thanks!
已附加屏幕截图

由Cecilia于修改

所有回复 (6)

more options

Hold down the Shift key while right-clicking to show the browser's context menu. You will see a "Check Spelling" checkbox menu item if the element allows spellcheck.

more options

Are that plain text text areas like used on this forum or are that rich text editors that accept HTML code ?

A webpage can disable the Firefox spell checker via a spellcheck="false" attribute of an input field or textarea or editable element and possibly provide its own spelling checker. You can right-click in the text area or input field and use "Inspect" to check in the Inspector whether this text area has a spellcheck="false" attribute.

more options

Hi! Thanks!!

It has rich editor options.

I've inspected and I see that the browser spellchecker is enabled.

Is there a way to fix this issue?

由Cecilia于修改

more options

Your screenshot only posted JavaScript and not the HTML code of the text area.

In the past we have proposed a bookmarklet to enable the spell checker for a content editable iframe like used by TinyMC.

javascript:void(document.activeElement.contentDocument.body.setAttribute("spellcheck","true"));
more options

I'm sorry, you are right. Here's the snippet. Spellchecker is "false" by default. Is there a way to change it and make "true" the default for this page? Thanks!

more options

You can see spellcheck="false" near the end of line three in the screenshot and this means that the website has disabled the Firefox spelling checker.

Did you try the JavaScript bookmarklet I posted above? You can create a new bookmark, possibly on the Bookmarks Toolbar for easy access, and paste the JavaScript code in its URL field where you would normally enter the address of the website. You need to click in the editor area to set focus to this element and then click the bookmarklet to invoke the JavaScript code. You can check/verify in the inspector whether it now shows spellcheck="true" and you should see "Check Spelling" in the right-click context menu. If you post a screenshot that shows the iframe where the editor is placed in then I can give JavaScript code that targets the iframe directly.