The Document.queryCommandSupported()
method reports whether or not the specified editor command is supported by the browser.
isSupported = document.queryCommandSupported(command);
command
Returns a Boolean
which is true
if the command is supported and false
if the command isn't.
The 'paste'
command return false
not only if the feature is unavailable, but also if the script calling it has insufficient privileges to perform the action [1]
var flg = document.queryCommandSupported("SelectAll"); if(flg) { // ...Do something }
Specification | Status | Comment |
---|---|---|
HTML Editing APIs The definition of 'querycommandsupported' in that specification. | Editor's Draft | Initial definition |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 17 | (Yes) | 9.0 (9.0)[1] | 4.0 | ? | ? |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 9.0 (9.0)[1] | ? | ? | ? |
[1] Before Firefox 41, for the command 'paste'
Firefox incorrectly returned true
when the paste feature was available but the calling script had insufficient privileges to actually perform the action.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/document/queryCommandSupported