W3cubDocs

/Web APIs

ShadowRoot: activeElement property

The activeElement read-only property of the ShadowRoot interface returns the element within the shadow tree that has focus.

Value

The Element which currently has focus, or null if there is no focused element.

Examples

js

let customElem = document.querySelector("my-shadow-dom-element");
let shadow = customElem.shadowRoot;
let focusedElem = shadow.activeElement;

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
activeElement 53 79 63 No 40 10 53 53 63 41 10 6.0

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot/activeElement