vote up 0 vote down star

Possible Duplicate:
Javascript: I have a custom right-click menu but still want the spellcheck!

Is there a JS property or command to see if a word is underlined in red (ie. needs to be spellchecked) in Firefox?

Ideally, for sample code it would be like... if I right click on a word the is underlined in red it will alert:

//watches for right click action
if(firefox.isUnderlinedForSpellcheck == true) {
  //display firefox spellcheck menu
} else {
  //perform my action
}

Anyone have any thoughts?

flag

0% accept rate
Dup: stackoverflow.com/questions/1407743/… – Crescent Fresh Sep 11 at 16:45
In FireFox 3 (at least), holding the Ctrl key while pressing the right mouse button shows the original context menu, including spelling corrections. But I guess not many users are aware of this. – Ber Nov 3 at 15:33

closed as exact duplicate by Crescent Fresh, marcgg, Brandon, R. Bemrose, John Rasch Sep 11 at 20:29

3 Answers

vote up 0 vote down

Josh Stodola is right. You are trying to get back functionality that you turned off by having a custom right-click handler. If you drop this handler, then Firefox behaves in the way that its users expect it to.

Most browser users (especially Firefox users) don't expect your application's functionality to come from the context menu. You are doing them a disservice by putting it there. They expect browser functionality (not page-specific functionality) to come from the context menu--and you are hiding it from them.

You would be better off to place these menu items directly on your page (with appropriate icons or whatever, of course). This is how the Web works. This is how people expect it to work.

link|flag
vote up 1 vote down

This is the answer: do not try to create your own custom context menu on a web site. Nobody likes them.

link|flag
2  
-1 This is a GREAT comment, but it is not an answer. If the OP gives up on the right click idea, might there still be a reason to work out the stated problem? – David Berger Sep 11 at 16:56
I don't mind that you -1 my answer, but understand that I have been down the road of creating custom context menus. I implemented some a few years ago (to help the user), and I had to remove them a year later after so many users complained. And I am certain that is why he is asking this question (he doesnt want his custom menu to override the browser spell checker). – Josh Stodola Sep 11 at 18:37
vote up 1 vote down

I don't think that you can since it's browser specific. You can use a second spellchecker and then it's most likely they will both find the same errors.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.