Skip to content

ally.js

JavaScript library to help modern web applications with accessibility concerns by making accessibility simpler

🔗ally.is.activeElement

Determines if an element is the activeElement of its host context, i.e. its document, iFrame or ShadowHost.

🔗Usage

var element = document.getElementById('victim');
var isActiveElement = ally.is.activeElement(element);

🔗Arguments

NameTypeDefaultDescription
elementHTMLElementrequiredThe Element to test.

🔗Returns

Boolean, true if the element is the activeElement of its host context.

🔗Throws

TypeError if element argument is not of type HTMLElement.

🔗Changes

🔗Contributing