Javascript, Firefox: how to disable individual browser controls?

In Firefox: when you place the cursor in a table cell, the browser displays 4 controls (one in the middle of each cell border). (The content is in editable mode.) How do I disable them?

Thanks in advance.

+4
source share
1 answer

If you mean the controls that you get in editable tables, you can disable them with the following command. It works in the latest Firefox, at least:

document.execCommand("enableInlineTableEditing", null, false);
+11
source

All Articles