Angular Material - How to add a tooltip to a disabled button
I've noticed that the directive matTooltip doesn't work on a disabled button. How can I achieve it? Example: <button mat-raised-button [disabled]="true" matTooltip="You cannot delete that"> <mat-icon>delete</mat-icon> </button> For an enabled button it works perfectly: <button mat-raised-button [disabled]="false" matTooltip="You cannot delete that"> <mat-icon>delete</mat-icon> </button> Marcin Kunert This doesn't work because it is triggered by mouseenter event which doesn't get fired by most browsers for disabled elements. A workaround is to add matTooltip to a parent element: <div matTooltip