files/en-us/web/api/document/querycommandstate/index.md
{{ApiRef("DOM")}}{{deprecated_header}}{{Non-standard_header}}
[!NOTE] Although the {{domxref("Document/execCommand", "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 {{domxref("Document.execCommand()")}} command applied.
queryCommandState(command)
command
queryCommandState() can return a boolean value or null if the state is unknown.
<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;
}
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);
{{EmbedLiveSample('Example', '100', '180')}}
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.
{{Compat}}
queryCommandState(): Scribe's "Browser Inconsistencies" documentation