Zeroclipboard is report as a accessibility issue

40 views Asked by At

When I run accessibility test, if I have an instance of ZeroCLipBoard I got an error.

For example with axe:

Ensures <object> elements have alternate text
1

There are 1 answers

0
Raúl Martín On BEST ANSWER

After instantiating your zeroClipboard you can do:

    const zcContainerId = ZeroClipboard.config('containerId');
    $(`#${zcContainerId}`).attr('aria-hidden', true);

Removing the element from the accessibility tree.