interactionsRauno
No Tooltips on Disabled Buttons
NEVER
NEVER: Put a tooltip on a `disabled` button — it cannot receive focus or hover reliably, so keyboard users never see it. Use `aria-disabled` plus visible explanation text instead.
Disabled buttons should not have tooltips — they are not accessible to keyboard users
Bad
Good
Why it matters
Disabled buttons cannot receive focus in the DOM, so keyboard users will never see the tooltip. Instead of hiding the reason behind an inaccessible tooltip, use aria-disabled with a visible explanation text so everyone can understand why the action is unavailable.
References