You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why this should be fixed: Clickable must be focusable and should have interactive semantics
How would you fix it: An element is clickable if it has an onclick event handler defined. You can make it focusable by adding a tabindex=0 attribute value to it. You can make it operable with the keyboard by defining an onkeydown event handler; in most cases, the action taken by the event handler should be the same for both types of events.
Side Effects expected: No
The text was updated successfully, but these errors were encountered:
What needs to be fixed:
Why this should be fixed: Clickable must be focusable and should have interactive semantics
How would you fix it: An element is clickable if it has an onclick event handler defined. You can make it focusable by adding a tabindex=0 attribute value to it. You can make it operable with the keyboard by defining an onkeydown event handler; in most cases, the action taken by the event handler should be the same for both types of events.
Side Effects expected: No
The text was updated successfully, but these errors were encountered: