Html – Tooltips for Button elements

buttonhtmltooltip

Is it possible to create a tooltip for an html button. Its the normal HTML button and there is no Title attribute as it is there for some html controls. Any thoughts or comments?

Best Answer

Simply add a title to your button.

<button title="Hello World!">Sample Button</button>