Mobile friendly way for explanation why button is disabled
For desktop browsers the title
attribute is an easy way to explain why a button is disabled:
<button disabled title="this is disabled because ...">disabled button</button>
But AFAIK this does not work for mobile devices.
How could this be solved for mobile devices?