This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The Selection.containsNode()
method indicates if the node is part of the selection.
sel.containsNode(node, partialContainment)
node
partialContainment
Optional
true
, containsNode()
returns true
when a part of the node is part of the selection. When false
, containsNode()
only returns true
when the entire node is part of the selection. If not specified, the default value false
is used./* Check to see if anything inside the body element is selected */ console.log(window.getSelection().containsNode(document.body, true));
Specification | Status | Comment |
---|---|---|
HTML Editing APIs The definition of 'Selection.containsNode()' in that specification. | Editor's Draft | Initial definition |
Selection API The definition of 'Selection.containsNode()' in that specification. | Working Draft | Current |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 4
|
No | Yes | Yes |
partialContainment parameter is optional
|
Yes | ? | 55 | No | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | ? | Yes | Yes | 4
|
Yes | Yes | ? |
partialContainment parameter is optional
|
? | Yes | ? | 55 | Yes | Yes | ? |
Selection
, the interface it belongs to.
© 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/Selection/containsNode