Firefox Tomorrow

web api instance method

Document: queryCommandState() method

View on MDN ↗

[!NOTE] Although the execCommand() method is deprecated, there are still some valid use cases that do not yet have viable alternatives, as mentioned in the execCommand() article. In these cases, you may find this method useful to implement a complete user experience, but test to ensure cross-browser compatibility.

The queryCommandState() method will tell you if the current selection has a certain execCommand() command applied.

Syntax

queryCommandState(command)

Parameters

Return value

queryCommandState() can return a boolean value or null if the state is unknown.

Example

HTML

<div contenteditable="true">Select a part of this text!</div>
<button>Test the state of the 'bold' command</button>
<hr />
<div id="output"></div>
hr,
button {
  margin: 1rem 0;
}

JavaScript

function makeBold() {
  const state = document.queryCommandState("bold");
  let message;
  switch (state) {
    case true:
      message = "The bold formatting will be removed from the selected text.";
      break;
    case false:
      message = "The selected text will be displayed in bold.";
      break;
    default:
      message = "The state of the 'bold' command is indeterminable.";
      break;
  }
  document.querySelector("#output").textContent = `Output: ${message}`;
  document.execCommand("bold");
}

document.querySelector("button").addEventListener("click", makeBold);

Result

Interactive exampleOpen the canonical MDN source to run this embedded demo.

Specifications

This feature is not part of any current specification. It is no longer on track to become a standard. There is an unofficial W3C execCommand spec draft.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also