Add a tooltip to a div Add a tooltip to a div javascript javascript

Add a tooltip to a div


For the basic tooltip, you want:

<div title="This is my tooltip">

like:

.visible {  height: 3em;  width: 10em;  background: yellow;}
<div title="This is my tooltip" class="visible"></div>